how do i do this with regex?

i want to match this string: -myString

but i don't want to match the -myString in this string: --myString

myString is of course anything.

is it even possible?

EDIT:

here's a little more info with what i got so far since i've posted a question:

string to match:
some random stuff here -string1, --string2, other stuff here
regex:
(-)([\w])*

This regex returns me 3 matches: -string1, - and -string2

ideally i'd like it to return me only the -string1 match

link|improve this question

BTW- this is good fun, and the answers are instructive, but regexs may not be the right tool for option processing (which I suspect is what you're trying to do) – dmckee Feb 9 '09 at 16:42
well if i can't do this with regex i'll do it differently. that's why i wanted to know if its possible :) – Mladen Prajdic Feb 9 '09 at 16:45
I'm sure you can do it. Just not that it is the best way. However, if you know this method, and don't know (say) FSM lexxing, and it doesn't present unacceptable performance or maintenance issues, feel free to ignore me. Cheers. – dmckee Feb 9 '09 at 16:50
since you can't use anchors to the beginning/end of the string, how do you know when string1, string2, etc end? Whitespace? comma? – Joel Coehoorn Feb 9 '09 at 17:35
yeah whitespace, comma and other punctuation marks – Mladen Prajdic Feb 9 '09 at 18:35
feedback

6 Answers

up vote 9 down vote accepted

Assuming your regex engine supports (negative) lookbehind:

/(?<!-)-myString/

Perl does, Javascript doesn't, for example.

link|improve this answer
my regex machine is the one in .Net. No clue if it supports that. – Mladen Prajdic Feb 9 '09 at 16:41
It does. "(?<!-)-\w+" would be the generic form, assuming that word characters (letters, numbers, underscore) is all that can legally follow the dash in your scenario. – Tomalak Feb 9 '09 at 16:58
Tomalak, yep that's exactly what i needed. how about you put that as an answer so i can mark it accepted? – Mladen Prajdic Feb 9 '09 at 17:06
@Mladen Prajdic: No, that would be a bit unfair. Bart's solution is correct, posting a trivial improvement to get an "accepted" check is stealing. ;-) @Bart, would you add the improved version to your answer? – Tomalak Feb 10 '09 at 13:35
Are the / / needed (or even valid) in .Net? – Svish Jun 12 '09 at 10:50
feedback

You want to match a string that starts with a single dash, but not one that has multiple dashes?

^-[^-]

Explanation:

^ Matches start of string
- Matches a dash
[^-] Matches anything but a dash
link|improve this answer
This would allow more dashes later in the string, is that okay? – Joel Coehoorn Feb 9 '09 at 16:36
dashes are allowed only at the begining of a word. so if there's a space further on there can be dases after it. but then the same rule should apply to them – Mladen Prajdic Feb 9 '09 at 16:39
This would also only match a dash and one other character. ie it would match -m out of -myString. – Martin Brown Feb 9 '09 at 16:39
The idea is to pluck matches out of a larger string, so the regex can't be anchored and it has to match the whole word, not just the first letter. – Alan Moore Jun 12 '09 at 10:50
feedback
/^[^-]*-myString/

Testing:

[~]$ echo -myString | egrep -e '^[^-]*-myString'
-myString
[~]$ echo --myString | egrep -e '^[^-]*-myString'
[~]$ echo test--myString | egrep -e '^[^-]*-myString'
[~]$ echo test --myString | egrep -e '^[^-]*-myString'
[~]$ echo test -myString | egrep -e '^[^-]*-myString'
test -myString
link|improve this answer
feedback

based on the last edit, I guess the following expression would work better

\b\-\w+
link|improve this answer
feedback

[^-]{0,1}-[^\w-]+

link|improve this answer
According to OP's edit, a sub string match is required, so anchors won't work. – Tomalak Feb 9 '09 at 16:54
Updated for the edit. The only question is how he decides how to end the "mystring" portion. This example uses whitespace. – Joel Coehoorn Feb 9 '09 at 17:34
I'm afraid now it is completely broken. ;-) I racked my brain for a simple no-look-behind-required solution as well, but I don't think there is one, when matching on a complete string is required. – Tomalak Feb 10 '09 at 13:30
feedback

Without using any look-behinds, use:

(?:^|(?:[\s,]))(?:\-)([^-][a-zA-Z_0-9]+)

Broken out:

(
  ?:^|(?:[\s,])        # Determine if this is at the beginning of the input,
                       # or is preceded by whitespace or a comma
)
(
  ?:\-                 # Check for the first dash
)
(
  [^-][a-zA-Z_0-9]+    # Capture a string that doesn't start with a dash
                       # (the string you are looking for)
)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.