Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
273 views

How can I exclude some characters from a class?

Say I want to match a "word" character (\w), but exclude "_", or match a whitespace character (\s), but exclude "\t". How can I do this?
5
votes
3answers
333 views

Character class subtraction, converting from Java syntax to RegexBuddy

Which regular expression engine does Java uses? In a tool like RegexBuddy if I use [a-z&&[^bc]] that expression in Java is good but in RegexBuddy it has not been understood. In fact it ...
4
votes
2answers
1k views

Replace all characters not in range (Java String)

How do you replace all of the characters in a string that do not fit a criteria. I'm having trouble specifically with the NOT operator. Specifically, I'm trying to remove all characters that are ...
4
votes
3answers
705 views

Why doesn't this pattern work in egrep?

Why can't I match the string "1234567-1234567890" with the given regular expression \d{7}-\d{10} with egrep from the shell like this: egrep \d{7}-\d{10} file ?
2
votes
2answers
55 views

Trying to understand this perl regex bracketed character class?

Below is a script that I was playing with. With the script below it will print a $tmp = "cd abc/test/."; if ( $tmp =~ /cd ([\w\/\.])/ ) { print $1."\n"; } BUT if I change it to: $tmp = "cd ...
2
votes
4answers
64 views

How to create a character class of the following set

+ - * / % < > = ! & ^ | ? : I've tried: [+-*/%<>=!&^|?:] But I think some of them will need to be scaped. How can I tell which ones?
2
votes
3answers
333 views

Matching (e.g.) a Unicode letter with Java regexps

There are many questions and answers here on StackOverflow that assume a "letter" can be matched in a regexp by [a-zA-Z]. However with Unicode there are many more characters that most people would ...
1
vote
5answers
62 views

What built-in regex character classes are supported Java

...when used in patterns like "\\p{someCharacterClass}". I've used/seen some: Lower Upper InCombiningDiacriticalMarks ASCII What is the definitive list of all supported built-in character classed? ...
1
vote
3answers
102 views

How do you use a plus symbol with a character class as part of a regular expression?

in cygwin, this does not return a match: $ echo "aaab" | grep '^[ab]+$' But this does return a match: $ echo "aaab" | grep '^[ab][ab]*$' aaab Are the two expressions not identical? Is there any ...
1
vote
1answer
55 views

Question about regular expressions

I saw this statement $name = ereg_replace("[^A-Za-z0-9.]", "", $name); What is the difference between [^A-Za-z0-9.] and [A-Za-z0-9.]? Based on my understanding of regular expression, the [] is ...
0
votes
1answer
288 views

java regex: match input starting with non-number or empty string followed by specific pattern

I'm using Java regular expressions to match and capture a string such as: 0::10000 A solution would be: (0::\d{1,8}) However, the match would succeed for the input 10::10000 as well, which is ...
-1
votes
2answers
72 views

List of metacharacters for MySQL regexp square brackets

Strangely I can't seem to find anywhere a list of the characters that I can't safely use as literals within MySQL regular expression square brackets without escaping them or requiring the use of a ...