Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

235
votes
6answers
169k views

Regular expression to match string not containing a word?

I know it is possible to match for the word and using tools options reverse the match. (eg. by grep -v) However I want to know if it is possible using regular expressions to match lines which does not ...
16
votes
7answers
46k views

RegEx to tell if a string does not contain a specific character

Easy question this time. I'm trying to test whether or not a string does not contain a character using regular expressions. I thought the expression was of the form "[^x]" where x is the character ...
14
votes
5answers
10k views

RegEx to exclude a specific string constant

Can regular expression be utilized to match any string except a specific string constant let us say "ABC" ? Is this possible to exclude just one specific string constant? Thanks your help in advance.
12
votes
4answers
7k views

Regex to match against something that is not a specific substring

I am looking for a regex that will match a string that starts with one substring and does not end with a certain substring. Example: // Updated to be correct, thanks @Apocalisp ^foo.*(?<!bar)$ ...
8
votes
3answers
4k views

Regex: Matching by exclusion, without look-ahead - is it possible?

In some regex flavors, [negative] zero-width assertions (look-ahead/look-behind) are not supported. This makes it extremely difficult (impossible?) to state an exclusion. For example "every line ...
7
votes
2answers
236 views

IPV6 address into compressed form in Java

I have used Inet6Address.getByName("2001:db8:0:0:0:0:2:1").toString() method to compress IPv6 address, and the output is 2001:db8:0:0:0:0:2:1 ,but i need 2001:db8::2:1 . , Basically the compression ...
6
votes
1answer
1k views

JSLint “insecure ^” in regular expression

JSLint reports Insecure '^' for the following line. Why is that? Or is it just going to complain any time I want to negate a character class? // remove all non alphanumeric, comma and dash characters ...
6
votes
4answers
712 views

Regex to match . (periods marking end of sentences) but not Mr. (as in Mr. Hopkins)

I'm trying to parse a text file into sentences ending in periods, but names like Mr. Hopkins are throwing false alarms on matching for periods. What regex identifies "." but not "Mr." For bonus, ...
6
votes
2answers
612 views

How to negate the whole regex?

I have a regex, for example (ma|(t){1}). It matches ma and t and doesn't match bla. I want to negate the regex, thus it must match bla and not ma and t, by adding something to this regex. I know I ...
4
votes
3answers
68 views

regular expression - match word only once in line

Case: ehello goodbye hellot hello goodbye ehello goodbye hello hello goodbye I want to match line 1 (only has 'hello' once!) DO NOT want to match line 2 (contains 'hello' more than once) Tried ...
4
votes
6answers
84 views

Regex to strip all square brackets except those coming after a certain prefix

So, I have a string. Most of the time, if the string has square brackets in it, bad things will happen. In a few cases, however, it's necessary to keep the brackets. These brackets that need to be ...
4
votes
4answers
269 views

Python regex not to match http://

I am facing a problem to match and replace certain words, not contained in http:// Present Regex: http://.*?\s+ This matches the pattern http://www.egg1.com http://www.egg2.com I need a ...
4
votes
2answers
482 views

Extending regular expression syntax to say 'does not contain text XYZ'

I have an app where users can specify regular expressions in a number of places. These are used while running the app to check if text (e.g. URLs and HTML) matches the regexes. Often the users want to ...
4
votes
3answers
622 views

How to match string, which does NOT contain a word?

To match string, which contains some word, I can use pattern "/.*word.*/". But how do I match a string, which does not contain this word? Example: I need to find a substring in a big text, which is ...
4
votes
3answers
175 views

Regex ignore underscores

I have a regex ([-@.\/,':\w]*[\w])* and it matches all words within a text (including punctuated words like I.B.M), but I want to make it exclude underscores and I can't seem to figure out how to do ...
4
votes
6answers
454 views

How do I turn any regex into an complement of itself without complex hand editing?

The following are pseudo examples, not real regex, but still an example of what I mean: .* (anything) -.* (NOT anything) [A-Z] (Any letter A to Z, caps only) -[A-Z] (NOT any letter A to Z, ...
4
votes
3answers
2k views

Regular expression for a string containing one word but not another

I'm setting up some goals in Google Analytics and could use a little regex help. Lets say I have 4 URLs http://www.anydotcom.com/test/search.cfm?metric=blah&selector=size&value=1 ...
4
votes
3answers
361 views

Regex negative match query

I've got a regex issue, I'm trying to ignore just the number '41', I want 4, 1, 14 etc to all match. I've got this [^\b41\b] which is effectively what I want but this also ignores all single ...
4
votes
5answers
362 views

How to match a comment unless it's in a quoted string?

So I have some string: //Blah blah blach // sdfkjlasdf "Another //thing" And I'm using java regex to replace all the lines that have double slashes like so: theString = ...
4
votes
4answers
1k views

How do I write a regular expression that excludes rather than matches, e.g., not (this|string)?

I am stumped trying to create an Emacs regular-expression that excludes groups. [^] excludes individual characters in a set, but I want to exclude specific sequences of characters: something like ...
4
votes
5answers
5k views

Using regex to match string between two strings while excluding strings

Following on from a previous question in which I asked: How can I use a regular expression to match text that is between two strings, where those two strings are themselves enclosed two other ...
4
votes
1answer
748 views

Regex to match a whole string only if it lacks a given substring/suffix

I've searched for questions like this, but all the cases I found were solved in a problem-specific manner, like using !g in vi to negate the regex matches, or matching other things, without a regex ...
4
votes
5answers
4k views

Regular expression that doesn't contain certain string

I have something like this aabbabcaabda for selecting minimal group wrapped by a I have this /a([^a]*)a/ which works just fine But i have problem with groups wrapped by aa, where I'd need ...
3
votes
1answer
73 views

What is wrong with my regex Pattern to find recurring cycles in Python?

I want to match any string that has a recurring cycle. Like in this data: 3333333333333333333333333333333333333333 / 1 digit cycle(3) 1666666666666666666666666666666666666666 / 1 digit cycle(6) ...
3
votes
1answer
170 views

Using regex to match non-word characters BUT NOT smiley faces

I have a Java program which is supposed to remove all non-letter characters from a string, except when they are a smiley face such as =) or =] or :P It's very easy to match the opposite with [a-zA-Z ...
3
votes
2answers
65 views

Regex for username with very specific rules

I am not a regex ninja. I've been tweaking this for an hour, and I'm sure someone on SO can do it more effectively. This is a regex for a username with some slightly peculiar requirements (to ...
3
votes
1answer
200 views

Regular expression to match content until multi-character string

I've got defective input coming in that looks like this... foo<p>bar</p> And I want to normalize it to wrap the leading text in a p tag: <p>foo</p><p>bar</p> ...
3
votes
2answers
185 views

Regex inverse matching on specific string?

I would like to match the following com.my.company.moduleA.MyClassName com.my.company.moduleB.MyClassName com.my.company.anythingElse.MyClassName but not the following ...
3
votes
6answers
365 views

C# - Regex Match whole words

I need to match all the whole words containing a given a string. string s = "ABC.MYTESTING XYZ.YOUTESTED ANY.TESTING"; Regex r = new Regex("(?<TM>[!\..]*TEST.*)", ...); MatchCollection mc = ...
3
votes
3answers
238 views

Help with regex include and exclude

I would like some help with regex. I'm trying to create an expression that will include certain strings and exclude certain strings. For example: I would like to include any URL containing mobility ...
3
votes
1answer
124 views

Is there any way of using the not (^) in regex for multiple characters?

I want to make a Regex pattern that matches all relative patches. What i want to match: img src="image.png" img src="http_image.png" What i don't want to match: img ...
3
votes
4answers
147 views

regex for negation of ends with matching

I need a regex to match strings that do not end in certain terms. Input is a bunch of Class names, like Foo, FooImpl, FooTest, FooTestSuite, etc. I want to match anything that does not end in ...
3
votes
7answers
213 views

Help With Particular Regular Expression - Not Containing Some String

How do I say, in regular expressions: Any portion of a string beginning with a capital letter, containing at least one space character, not containing the string " _ " (space underscore space), and ...
3
votes
4answers
246 views

Negating Alternation In Regular Expressions

I can use "Alternation" in a regular expression to match any occurance of "cat" or "dog" thusly: (cat|dog) Is it possible to NEGATE this alternation, and match anything that is NOT "cat" or "dog"? ...
3
votes
2answers
121 views

Regex negation - word parsing

I am trying to parse a phrase and exclude common words. For instance in the phrase "as the world turns", I want to exclude the common words "as" and "the" and return only "world" and "turns". ...
3
votes
4answers
346 views

string mask and offset with regex

I have a string on which I try to create a regex mask that will show N number of words, given an offset. Let's say I have the following string: "The quick, brown fox jumps over the lazy dog." I want ...
3
votes
2answers
370 views

Match every Quoted String that DOES NOT contain a substring

Multiline Test string: dkdkdkdk dkdkdkdk dkdkdkd dkdkdkd "hello" dkdkdkdkdk dkdkdk "goodbye.hello" dkdkdkd kdkdkd kdkdkdk "hello.goodbye.hello" dddd "test" ssss "http:x-y.f/z/z" "" "." ...
3
votes
5answers
6k views

Negating a set of words via java regex!

I would like to negate a set of words using java regex. Say, I want to negate cvs, svn, nvs, mvc. I wrote a regex which is ^[(svn|cvs|nvs|mvc)]. Some how that seems not to be working. Could you ...
3
votes
6answers
700 views

How can I combine a positive and negative condition in a regex?

I fairly new to regular expressions and need some help. I need to filter some lines using regex in Perl. I am going to pass the regex to another function so it needs to be done in a single line. I ...
2
votes
1answer
29 views

Regex Negation on a set of strings

In the following string: <table border="1"><tr><td class=" m" bgcolor="#cccccc" style="bold" size="7" m="m "><span></span> </td><td class=" m" ...
2
votes
4answers
27 views

Php replace characters matching the regular expression

I tried using preg_replace method to replace matching regular expression but i am getting the error message "Warning: preg_replace(): No ending delimiter '_' found" $oldString = ""; $newString = ...
2
votes
3answers
73 views

regex to replace multiple characters with one

Suppose I have a string like this: "abc%\%%%%" I want to replace multiple %%% with only one %. I tried something like String st = "abc%\%%%%".replaceAll("(%)\\1+", "$1"); But that would also ...
2
votes
2answers
60 views

negating javascript regex

I am trying to match a string containing a mix of digits and hyphenated digits, like a crossword answer specification, for example 1,2-2 or 1-1,3,4,2-2 /,?(([1-9]-[1-9])|([1-9]))/g is what I've come ...
2
votes
1answer
44 views

Is there a way to REGEX this information.

I'm trying to retrieve the date from the line below using a single regEX. The date and time in the string below can change. My Birthday is: Thu Jan 12 23:59:59 GMT 2012. If I use this regEX ...
2
votes
2answers
31 views

Regex to replace in files

I have to replace \ in files when the \ is not followed by " so I made this regex to find occurrences with SublimeText: #\\^"# but it doesn't work Do someone has an idea ? thanks
2
votes
1answer
74 views

Regex pattern for matching url

i have the following pattern : /^\/(?P<slug>.+)$/ that match : /url. My problem is that it also match /url/page, how to ignore /in this regex ? The pattern should: Pattern match : /url ...
2
votes
1answer
127 views

Help fixing a BBcode regular expression

I have a regular expression that grabs bbcode tags. It works great except for a minor glitch. Here is the current expression: \[([^=\[\]]+)[=\x22']*([^ \[\]]*)['\x22]*\](.+)\[/\1\] Here is some ...
2
votes
1answer
144 views

Having a dot in the id of rails routes

I am working on Rails 2.3.11. If I have a url like http://www.abc.com/users/e.f.json , I expect the id to be 'e.f' and the expected format to be 'json'. Can someone please suggest a way to do it. ...
2
votes
3answers
87 views

Need help constructing a regex

I need to write a regex which matches strings representing comma separated days of week, like: "Sun,Mon,Tue,Wed,Thu,Fri,Sat" Each day can appear in the string at most once. The order of days is ...
2
votes
5answers
386 views

Unix grep regex containing 'x' but not containing 'y'

I need a single-pass regex for unix grep that contains, say alpha, but does not contain beta. grep 'x' <> | grep -v 'y'

1 2 3 4