1
vote
1answer
36 views
Elegant regular expression to match all punctuations but not “’” in emacs Lisp?
I want to match all punctuations, but not "'", as in "I'm". For example, in the sentence below:
I'm a student, but I'm also working.
^not match ^match ^not ^match
I can use …
2
votes
5answers
100 views
regex negation question
Hi,
Does anybody know how to code a regular expression (for use with some grep like tool) which will search for the word 'vat' but exclude the word 'pri**vat**e'. I've taken over a project which has …
1
vote
4answers
169 views
How to find a word NOT preceded by another specific word?
Which regular expression can I use to find all strings bar are not preceded by string foo? Having whitespace between the two is also illegal.
So the regex should match the following strings
foo is …
1
vote
3answers
95 views
regex to not match if a specified string exists
i'm trying to do an apache rewrite where if the term "admin" is contained in the request_uri
mydomain.com/admin/anything_else
re-write the host to use a subdomain
…
0
votes
4answers
206 views
Simple C# regex
I have a regex I need to match against a path like so: "C:\Documents and Settings\User\My Documents\ScanSnap\382893.pd~". I need a regex that matches all paths except those ending in '~' or '.dat'. …
0
votes
1answer
76 views
Simple regex negation
Trying to match ONLY the first character in the sample below.
Sample string: C/C++/Objective C/Objective-C/ObjectiveC/objectiveC
My faulty regex: (?![O|o]bjective[ |-]?)C(?!\+\+)
Doh.
0
votes
3answers
101 views
Regex challenge - find “foobar” in HTML document
I have a fairly long and complex HTML document, and I need to find all occurences of a given string, e.g. "foobar", unless it's between <a> and </a> anchor tags.
The trouble is: it could …
0
votes
1answer
45 views
White listing certain HTML tags in python?
Let's say allowed_bits = ['a', 'p']
re.compile(r'<(%s)[^>]*(/>|.*?</\1>)' % ('|'.join(allowed_bits)))
matches:
<a href="blah blah">blah</a>
<p />
and not:
…
3
votes
6answers
312 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 …
3
votes
5answers
375 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.
1
vote
4answers
389 views
Negating a set of words via java regex!
Hi folks,
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. …
1
vote
1answer
338 views
C# regex to match a string that doesn’t contain a certain string?
This should be an easy one for the Regex experts out there... :)
I want to match any string that does not contain the string "DontMatchThis".
What's the regex?
0
votes
5answers
308 views
Match a string that does not contain a certain character sequence
I'm trying to use regular expressions to match a string that does not contain the sequence of characters of a less than symbol (<) followed by a non space. Here are some examples
Valid - "A new …
0
votes
5answers
234 views
regexp to match string1 unless preceded by string2
Using Ruby, how can I use a single regex to match all occurrences of 'y' in "xy y ay xy +y" that are NOT preceded by x (y, ay, +y)?
/[^x]y/ matches the preceding character too, so I need an …
3
votes
6answers
8k 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 …
