vote up 0 vote down star

Given the following strings

7;#User One
7;#User Two;#9;#User Two
7;#User Two;#9;#User Two;#123;#User Three

I would like to build a regular expression that "breaks" these apart so that each string returns the following matches:

["7;#User One"]
["7;#User Two", "9;#User Two"]
["7;#User Two", "9;#User Two", "123;#User Three"]

I tried a few methods but can't seem to get it to work properly. Can anyone help?

flag

3 Answers

vote up 3 vote down check

This one should do the trick

#?([0-9]+;#[a-zA-Z\s]+)
link|flag
The first group will contain the match you want – Chris Meek Oct 23 at 11:47
First to answer - but all do the trick thanks. – kouPhax Oct 23 at 11:51
vote up 1 vote down

The following will give you matches on the group UserName

#*(?<UserName>\d+;#[^;]+)

It would be simply is you prepended the string with a hash and appended a semi-colon...

link|flag
Yeah, Chris's start is better. would still go for ^; instead of a-z so you can have any character in user except semi-colon. #?(\d+;#[^;]+) – Justin Wignall Oct 23 at 11:49
vote up 1 vote down

Here you go:

#?\d*;#User [a-zA-Z]*[|#]?
link|flag

Your Answer

Get an OpenID
or

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