Hey, I am looking for a pattern that matches everything until the first occurrence of a specific character, say a ";" - a semicolon.

I wrote this:

/^(.*);/

But it actually matches everything (including the semicolon) until the last occurrence of a semicolon.

link|improve this question

5  
/^(.*?);/ should also work (it's called non-greedy), but the given answers using [^;]* are better. – Pascal Jan 6 '10 at 13:25
feedback

8 Answers

up vote 13 down vote accepted

You need

/[^;]*/

The [^;] is a character class, it matches everything but a semicolon.

To cite the perlre manpage:

You can specify a character class, by enclosing a list of characters in [] , which will match any character from the list. If the first character after the "[" is "^", the class matches any character not in the list.

This should work in most regex dialects.

link|improve this answer
feedback

Would;

/^(.*?);/

work?

The "?" is a lazy operator, so the regex grabs as little as possible before matching the ;.

link|improve this answer
(I suck at regex, so this is for my understanding as much as anything else) – RJFalconer Jan 6 '10 at 13:26
Yes, this would work. – slebetman Jan 6 '10 at 13:30
1  
Yep, remember TMTOWTDI is a perl moto :) en.wikipedia.org/wiki/TMTOWTDI – Glenn Slaven Jan 6 '10 at 13:33
2  
ya, but following the bicarbonate extension to Tim Toady, I believe negated character classes win as lazy quantifier includes backtraking. +1 anyway. – Amarghosh Jan 6 '10 at 13:40
2  
Worth reading on the performance topic: blog.stevenlevithan.com/archives/greedy-lazy-performance – Glenn Slaven Jan 6 '10 at 13:45
feedback

/^[^;]*/

The [^;] says match anything except a semicolon. The square brackets are a set matching operator, it's essentially, match any character in this set of characters, the ^ at the start makes it an inverse match, so match anything not in this set.

link|improve this answer
1  
Be aware that the first ^ in this answer gives the regex a completely different meaning: It makes the regular expression look only for matches starting from the beginning of the string. In this case, that would effectively be a no-op if you run the regular expression only once. If you want to look for multiple matches within a single string, the first ^ would have to go. – Dan Breslau Jan 6 '10 at 13:48
1  
He did say that he wanted to match everything until the first occurrence of a semicolon, so I assumed that he meant from the start of the string. – Glenn Slaven Jan 6 '10 at 13:58
feedback

Try /[^;]*/

That's a negating character class.

link|improve this answer
feedback

Try /[^;]*/

Google regex character classes for details.

link|improve this answer
Beaten to the buzzer! – Skilldrick Jan 6 '10 at 13:24
Yes, the speed of answers here never ceases to amaze me. – sleske Jan 6 '10 at 13:25
Luck of the draw -- I think this is the first time it's landed my way ;-) – Dan Breslau Jan 6 '10 at 13:43
feedback

this is not a regex solution, but something simple enough for your problem description. Just split your string and get the first item from your array.

$str = "match everything until first ; blah ; blah end ";
$s = explode(";",$str,2);
print $s[0];

output

$ php test.php
match everything until first
link|improve this answer
Bright idea, thanks. – Philippe CM Mar 25 at 20:39
feedback

This was very helpful for me as I was trying to figure out how to match all the characters in an xml tag including attributes. I was running into the "matches everything to the end" problem with:

/<simpleChoice.*>/

but was able to resolve the issue with:

/<simpleChoice[^>]*>/

after reading this post. Thanks all.

link|improve this answer
I had found that it is way more efficient to actually parse(each language or framework has its own classes for that) html/xml because of it's machine format, regex's are for natural language. – Leon Fedotov Feb 6 '11 at 11:15
feedback

sample text:

"this is a test sentence; to prove this regex; that is g;iven below"

If for example we have the sample text above, the regex /(.*?\;)/ will give you everything until the first occurence of semicolon (;), including the semicolon: "this is a test sentence;"

link|improve this answer
1  
it is not necessary to escape ; char becaut it is not regex special character. Grouping () is not required as well. You can go with /.*?;/ – Alex Kliuchnikau Jan 20 at 13:30
yes, you are quite right. the escaping was more like "better safe than sorry" – poncius Jan 20 at 14:24
feedback

Your Answer

 
or
required, but never shown

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