vote up 0 vote down star

Alright, i promised myself i would learn Regex one day.. but today is not that day.

What is the correct expression for matching #_ (where _ is any character EXCEPT {)?


Clarification:

I am working on a syntax highlighting system for Ruby and i am defining the rules for comments. The specification that the '{' not be included is to differentiate a comment from variables embedded in strings.

flag

What are you really trying to match? – Schwern Feb 14 at 0:04
did you just want to match just two characters ? – Tom Feb 14 at 0:45

8 Answers

vote up 10 vote down check

You define a character class inside [ ] and negate with ^:

[^{] // i.e. a single character that is not {

If you add the hash mark in the beginning this results in:

#[^{] // i.e. # and then a single character that is not {
link|flag
at least there is an explanation. – sfossen Feb 13 at 23:43
vote up 4 vote down

In PCRE syntax, #[^{]

link|flag
vote up 0 vote down

^#[^{]$

That's my answer if you meant to just match two characters.

link|flag
that means a line consisting only of those 2 characters. – sfossen Feb 13 at 23:42
isn't that what he is asking for? – Tom Feb 14 at 0:44
+1, that's a valid literal interpretation of the question as stated. – Adam Bellaire Feb 14 at 0:59
"You are technically correct, the BEST KIND of correct!" It is a correct but useless answer. – Schwern Feb 17 at 1:37
vote up 3 vote down

This feels like a CS 101 homework question to me.

I suspect the right answer is to actually learn regular expressions today. What are you trying to match and why?

link|flag
vote up 0 vote down

Rework is a tool that will help you interactively explore regular expressions.

link|flag
vote up 0 vote down

Rubular is another great website for testing regular expressions.

link|flag
vote up 0 vote down

If you're trying to do syntax highlighting, do yourself a favor and don't try to hack something together with regular expressions. You'll wind up piling hack on top of hack on top of hack until it's a scattered mess of almost-works and good-enoughs. Trust me, you'll hate yourself.

Go directly to using a grammar. Either by putting one straight out of the source code or finding an existing grammar on the Internet.

link|flag
vote up 0 vote down

This site is great for help: txt2re

May not help with your problem but will in the future.

link|flag

Your Answer

Get an OpenID
or

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