Regular expression help me
-
Write a regular expression pattern to match: 1. a full URL (for ex :http://www.yourcompany.com/index.htm ) 2. Human name (case sensitive) for ex : Jonh Smith Plz help me to answer this problem Thanks very much. I tried so hard and got so far
-
Write a regular expression pattern to match: 1. a full URL (for ex :http://www.yourcompany.com/index.htm ) 2. Human name (case sensitive) for ex : Jonh Smith Plz help me to answer this problem Thanks very much. I tried so hard and got so far
:rolleyes: There are website out there that have all sorts of regex expressions. Hint: search for "regular expression library" or something similar. Alex Korchemniy
-
Write a regular expression pattern to match: 1. a full URL (for ex :http://www.yourcompany.com/index.htm ) 2. Human name (case sensitive) for ex : Jonh Smith Plz help me to answer this problem Thanks very much. I tried so hard and got so far
-
Write a regular expression pattern to match: 1. a full URL (for ex :http://www.yourcompany.com/index.htm ) 2. Human name (case sensitive) for ex : Jonh Smith Plz help me to answer this problem Thanks very much. I tried so hard and got so far
URL: how about this one: http://www.foad.org/~abigail/Perl/url3.regex[^]? Though you could shorten it a bit if you only want http and not check for every detail... Human name (case sensitive): This is not possible (or equally complicated to url3.regex) because names are different in every country. You want that every 'word' starts with an uppercase letter? Then your regex won't work for many non-English names that have some sort of 'filling word' between first and last name.