Jul 12, 2006 #1 lisalis99 Programmer Jan 9, 2005 121 US Hi, How do I show a range of 90-100, I got the 70-79 by doing: [7-7][0-9], but i'm stuck on this one for some reason... Thanks, Lis
Hi, How do I show a range of 90-100, I got the 70-79 by doing: [7-7][0-9], but i'm stuck on this one for some reason... Thanks, Lis
Jul 12, 2006 #2 feherke Programmer Aug 5, 2002 9,541 RO Hi Regular expressions are for string processing, so they are not suitable for numeric value checking. Maybe this ( while you did not mentioned language, this is just generic format ) : Code: /1?[09][0-9]/ Feherke. http://rootshell.be/~feherke/ Upvote 0 Downvote
Hi Regular expressions are for string processing, so they are not suitable for numeric value checking. Maybe this ( while you did not mentioned language, this is just generic format ) : Code: /1?[09][0-9]/ Feherke. http://rootshell.be/~feherke/
Jul 12, 2006 1 #3 PHV MIS Nov 8, 2002 53,708 FR Extended Regular Expression: (9[0-9]|100) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Extended Regular Expression: (9[0-9]|100) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Jul 12, 2006 Thread starter #4 lisalis99 Programmer Jan 9, 2005 121 US Thanks, i'm actually using Linux shell scripting if that makes a difference... Upvote 0 Downvote
Jul 12, 2006 Thread starter #5 lisalis99 Programmer Jan 9, 2005 121 US Perfecto PHV, Thanks, it worked! Most appreciated! Upvote 0 Downvote