0
votes
3answers
48 views
Java: Simple regex question, complete words
Hi,
i need a Regex to do this ( catch only real words ):
Inputstring:
hello,sdfsdf.....yahoo@email.com
Process:
String theMagicRegEx = "?????";
String[] arrayvar = asdf.split(theMagicRegEx);
…
0
votes
2answers
9 views
Apache rewrite condition and the absence of characters
We have the following mod_rewrite condition/rule but it is returning a 404 error on URLs that merely begin "i" (or "css" for that matter) if they do not equate precisely to our corresponding …
1
vote
3answers
50 views
how do I know if a regexp has more than one possible match?
Hi
I am writing java code that has to distinguish regular expressions with more than one possible match from regular expressions that have only one possible match.
for example:
"abc." can have …
0
votes
6answers
65 views
find word before second comma with regex
I want to store the word before the second comma in a string.
So if the string looks like this: Hello, my name is David, bla bla.
I want to set a variable $test = David
0
votes
2answers
51 views
how to check if a string contains an alphanum chars appears at least n times consecutively
I am testing for a string if it contains at least n chars in consecutive order:
I have this regex but it doesn't seems to work
(\w\1){3,}
Can someone please help!!!
Thanks
0
votes
4answers
45 views
Java regexp overmatches
I want to replace a single <, but not <<, using a Java regexp (so I'm working with String.replaceAll()). Right now I have
([^<]|^)<([^<]|$)
which works in Python, but not Java. I …
1
vote
3answers
41 views
Number grouping using regexps
Is it possible to do number grouping (e.g., converting the number 1000 to the string "1 000") using one pass with only regular expressions? (I know the boundary between regexp and language facilities …
44
votes
30answers
6k views
What is the best regular expression for validating email addresses?
Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is:
…
0
votes
5answers
57 views
Need C# regexp for URL validation
How to validate by a single regular expression the urls:
http://83.222.4.42:8880/listen.pls
http://www.my_site.com/listen.pls
http://www.my.site.com/listen.pls
to be true?
I see that I formulated …
0
votes
5answers
25 views
Difference in regex email validation between jQuery plugin and org.springmodules.validation
Greetings!
I have a Spring app and a form getting validated on the back and front ends.
On the back end I'm using annotation based validation for the EMAIL field with help from …
3
votes
3answers
40 views
Replace text (change case) in a textbox using Javascript
I am trying to build a sort of intelli-sense text input box, where as the user types, the 'and' is replaced by 'AND \n' (i.e. on each 'and', the 'and' is capitalized and user goes to new line).
The …
0
votes
2answers
216 views
Using Intelligencia UrlRewriter regex .asp pages to a holding page
Hello,
When looking over the statistics for my site, I realized that the vast majority of traffic is coming via third party links to classic ASP pages which haven't existing for a few years now.
I …
0
votes
2answers
90 views
String Matching for /* and */
Hello.
I have a text file including the lines below:
/* MY TXT File LINE */
/* MY TXT File LINE MORE */
constant private FileName = <A "C:\\TMP\\ALARM.TXT">
constant ConfigAlarms = <U1 …
3
votes
4answers
111 views
How to match 2 out of “1,2,7,9,13,3,10,4,21,6,12” in MySQL?
I'm not familiar with regex in MySQL.
0
votes
5answers
38 views
Regex to allow text, some special characters and keep below a specified length
Hi all,
I'm trying to create a validation expression that checks the length of an input and allows text and punctuation marks (e.g. , ? ; : ! " £ $ % )
What I have come up with so far is …
