|
A Library of Regular Expressions http://regexlib.com/ Allows percent values from 0 to 100 without the % sign. Can be used with up to 2 decimal places or without any. Also works in ASP.NET regular expression validator control. Read more... I'm very new to reg exp
I've given a try ...
for C#
@"^(((\\\\([^\\/:\*\?""\|<>\. ]+))|([a-zA-Z]:\\))(([^\\/:\*\?""\|<>\. ]*)([\\]*))*)$"
It worked for me ...
Make neccessary changes as required Read more... Matches any word except these from alternation (xx|yy|...). Works in JavaScript Read more... Best For First Name or Middle Name or Last Name
This Expression Allows only alphabets with apostrophe ('). Read more... Date in DD/MM/YYYY or D/M/YYYY format. Read more... Matches name/value pairs. In the example below, the 'name' of 'a' will have the 'value' of 'b'. 'c' will have the value 'd'. Read more... This expression matches ICD-10 code Read more... Matches any number which includes the US currency symbol ($), a negative sign (-), comma separators, and a decimal. It matches an unlimited number of decimal places. It does NOT reject an empty string passed to it. Credit goes to Al Kahler for posting the original expression from http://regxlib.com/REDetails.aspx?regexp_id=70 along with a fix for the decimal place. Read more... asas Read more... A simple regex to check a version information string of the style 1.0.0.0 Read more... This regex will validate any UK Postcode, including the Girobank postcode and irrespective of whether it contains a space.
It is based on the BS7666 standard detailed in the UK Government Data Standards Catalogue from the Cabinet Office (http://www.govtalk.gov.uk/gdsc/html/frames/Postcode.htm). Read more... Match any number , no characters, no empty sets, and accept zero. Read more... Validates a 32bit integer from 0 through 4294967296 without leading zeros. An expansion of the 16 bit version http://regexlib.com/REDetails.aspx?regexp_id=1427 Read more... Integer with or without commas. Signed or unsigned. Read more... This expression can be used to parse Yahoo search results. Read more... Parse the sentence to separated words and signs of preposition. Read more... Given HTMl or CSS source, find the value of all href and src attributes + anything between url(). Read more... This Regex is usefull to validate if the text typed will still lead to a valid number for a international input.
Replace , with \. to get an american notation Read more... Validates student Grade Point Average (GPA) value (based on U.S. Standard 0 thru 4.0 values) Read more... Separates a URL into components viz. schema, domain, port, path and query. Avoids unnecessary numbered groups caused by braces. Read more...
|