Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
496 views

grep capture regex

I am trying to use grep to capture data below: "\\.xy$" "\\.ab$" "\\.ef\\.hi$" I have grep -Eo "((\\\\\.[a-zA-Z]+)){1,2}\\$" file two problems: It can capture things like \\.xy$, but not ...
2
votes
3answers
105 views

Problem with whitespace in a RegEx with capture groups

I've got a regular expression that I'm trying to match against the following types of data, with each token separated by an unknown number of spaces. Update: "Text" can be almost any character, which ...
2
votes
2answers
383 views

Identifying capture groups in a Regex Pattern

Is there a way in Java (perhaps with an additional Open Source library) to identify the capture groups in a java.util.regex.Pattern (i.e. before creating a Matcher) Example from the Java docs: ...
1
vote
2answers
327 views

Why does NSRegularExpression not honor capture groups in all cases? [solved]

Main problem: ObjC can tell me there were six matches when my pattern is, @"\\b(\\S+)\\b", but when my pattern is @"A b (c) or (d)", it only reports one match, "c". Solution Here's a function which ...
1
vote
3answers
494 views

Capture groups not working in NSRegularExpression

Why is this code only spitting out the entire regex match instead of the capture group? Input @"A long string containing Name:</td><td>A name here</td> amongst other things" ...
1
vote
4answers
170 views

extract last match from string in c#

i have strings in the form [abc].[some other string].[can.also.contain.periods].[our match] i now want to match the string "our match" (i.e. without the brackets), so i played around with lookarounds ...
1
vote
2answers
709 views

Code to parse capture groups in regular expressions into a tree

I need to identify (potentially nested) capture groups within regular expressions and create a tree. The particular target is Java-1.6 and I'd ideally like Java code. A simple example is: ...
0
votes
1answer
269 views

Regex to capture unknown number of repeated groups

I'm try to write a regular expression to use in a Java program that will recognize a pattern that may appear in the input an unknown number of times. My silly little example is: String patString = ...
0
votes
2answers
43 views

Help with a regex expression

I am trying to get the word after Sysdba. out of a string. Here is a example where my result would be PRODUCTION CAST(CASE WHEN SYSDBA.PRODUCTION.SHIPPING_COMPLETE_DATE IS NOT NULL THEN 1 ELSE 0 END ...
0
votes
3answers
792 views

C# Regex: How Can I Replace Tokens With Strings Generated at Run-time?

Given the following input and regex strings: const string inputString = "${Principal}*${Rate}*${Years}"; const string tokenMatchRegexString = @"\${([^}]+)}"; How can I replace each token (i.e. ...