Microsoft
Software
Hardware
Network
Question : regular expression 1-100 and decimals
I need a reg exp for a number from 1 to 100 and also excepting two decimal places
1 = T
100 = T
50.5 = T
75.75 = T
101 = F
.034 = F
50.755 = F
Answer : regular expression 1-100 and decimals
If you are testing for the exact string, then you can add the start/end of line markers:
1:
^(?:100|\d{1,2}(?:\.\d{1,2})?)$
Random Solutions
Need to force exchange users to send internal email externally
updating sql database structure while keeping existing structure intact
Firewall & Windows Security Center
Binding Select (Multiple)
Oracle 10g: How to index a column in a materialized view?
Calculated variable on server...
reCAPTCHA PHP not failing when nothing is entered; works fine when something is entered
HMAC-MD5 (RFC 2104) VB
I have a coolmax eSATA drive enclosure with a seagate SATA drive
In Perl, how do I check if a value already exist in the database