I'm a regular expression newbie, and I can't quite figure out how to write a single regular expression that would "…
regex duplicates capture-groupI'm porting a library from Ruby to Go, and have just discovered that regular expressions in Ruby are not compatible …
regex go capture-groupWhen I run this code: print re.search(r'1', '1').groups() I get a result of (). However, .group(0) …
python regex object match capture-groupIn R, is it possible to extract group capture from a regular expression match? As far as I can tell, …
regex r capture capture-groupWhy is this code only spitting out the entire regex match instead of the capture group? Input @"A long string …
objective-c regex ios nsregularexpression capture-groupI've got a regular expression with capture groups that matches what I want in a broader context. I then take …
regex perl replace capture-groupI'm trying to figure out how I can repeat a capture group on the comma-separated values in this the following …
javascript regex capture-groupI am converting my boost-based regular expressions to C++11 regex. I have a capture group called url: \s*?=\s*?(("(?<…
regex c++11 capture-groupIntro (you can skip to What if... if you get bored with intros) This question is not directed to VBScript …
regex substring match capture-groupI've got a regular expression that I'm trying to match against the following types of data, with each token separated …
regex whitespace capture-group