I have strings like follows:
val:key
I can capture 'val' with /^\w*/.
How can I now get 'key' without the ':' sign?
Thanks
|
I have strings like follows:
I can capture 'val' with How can I now get 'key' without the ':' sign? Thanks
| ||||
|
feedback
|
|
How about this?
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.
| |||||
feedback
|
|
What language are you using? /\:(.*)/ doesn't capture the ":" but it does match the ':' In Perl, if you say:
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). | |||
|
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.
| |||
|
feedback
|
That looks for : and then captures all the word characters after it till the end of the string | |||
|
feedback
|
split(/:/, $text, 2)– Alan Moore Jul 23 '09 at 12:42