I have strings like follows:

val:key

I can capture 'val' with /^\w*/.

How can I now get 'key' without the ':' sign?

Thanks

link|improve this question

62% accept rate
1  
depending on your language used, there should be some sort of split() command to split strings. Just split on ":" , then get the last element. No need regex. – ghostdog74 Jul 23 '09 at 11:25
i was missing the simplest solution! by the way, the key may contain ':'. – pistacchio Jul 23 '09 at 12:29
1  
So you only want it to split on the first colon? Use a chunk limit: split(/:/, $text, 2) – Alan Moore Jul 23 '09 at 12:42
feedback

4 Answers

How about this?

/^(\w+):(\w+)$/

Or if you just want to capture everything after the colon:

/:(.+)/

Here's a less clear example using a lookbehind assertion to ensure a colon occurred before the match - the entire match will not include that colon.

/(?<=:).*/
link|improve this answer
i'd like to capture it with a different regex and /\:(.*)/ still captures the ':' – pistacchio Jul 23 '09 at 9:51
but the parentheses will let you extract the submatch – Paul Dixon Jul 23 '09 at 9:54
feedback

What language are you using? /\:(.*)/ doesn't capture the ":" but it does match the ':'

In Perl, if you say:

$text =~ /\:(.*)/;
$capture = $1;
$match = $&;

Then $capture won't have the ":" and $match will. (But try to avoid using $& as it slows down Perl: this was just to illustrate the match).

link|improve this answer
feedback

This will capture the key in group 1 and the value in group 2. It should work correctly even when the value contails a colon (:) character.

^(\w+?):(.*)
link|improve this answer
feedback
/\:(\w*)/

That looks for : and then captures all the word characters after it till the end of the string

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.