any way would be fine. Perl, python, ruby...
|
closed as not a real question by cjm, SilentGhost, toolic, Ether, Graviton Jul 27 '10 at 2:49
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
In perl, you can use this one, Have a look
OUTPUT:
|
|||||||||
|
|
You can match this regex
Edit: The above regex will also include the brackets as a part of matched string. To avoid getting the brackets as a part of match (i.e. only match string inside the starting and ending bracket, excluding brackets) you may use below regex.
|
|||||||||||||
|
|
Do you only want to match outer braces? For example: In Python:
Otherwise:
|
|||
|
|
On capturing groupsA capturing group, usually denoted with surrounding round brackets, can capture what a pattern matches. These matches can then be queried after a successful match of the overall pattern. Here's a simple pattern that contains 2 capturing groups:
Given
You can nest capturing groups, and there are rules specifying how they're numbered. Some flavors also allow you to explicitly name them. ReferencesOn repeated capturesNow consider this slight modification on the pattern:
Now group 1 matches
ReferencesRelated questions specific to .NET |
|||
|
|
