The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
185 views

Get index of each capture in a JavaScript regex

I want to match a regex like /(a).(b)(c.)d/ with "aabccde", and get the following information back: "a" at index = 0 "b" at index = 2 "cc" at index = 3 How can I do this? String.match returns list ...
2
votes
2answers
51 views

PHP regex combine capturing group variable with a number

For example, I want to replace: margin:0px; with margin:0; This is the regex I came up with: $data = preg_replace('/([^\d])0px/', '$1 0', $data); $1 would represent the : in this example. Now how ...
2
votes
2answers
131 views

Visual Studio regex replace repeated capturing group

I'm working on a fairly large project (c#) and from place to place I have snippets that looks like this: ((int)foo).ToString() + "," + ((int)bar).ToString() + "," + ((int)zig).ToString() + ... The ...
1
vote
1answer
82 views

Positive lookbehind vs non-capturing group: different behaviuor

I use python regular expressions (re module) in my code and noticed different behaviour in theese cases: re.findall(r'\s*(?:[a-z]\))?[^.)]+', 'a) xyz. b) abc.') # non-capturing group # results in ...
0
votes
1answer
80 views

how does this regex for email address validation work?

While searching for regular expressions used for email address validation, i came across this page: http://www.regular-expressions.info/email.html. i couldn't understand it. it says: ...
0
votes
1answer
86 views

Extract North American postal code using regex

I have the following regex that I use to validate North American postal codes: (?:(\d{5})(?:-\d{4})?)|(?:([a-zA-Z]\d[a-zA-Z]) ?(\d[a-zA-Z]\d)) FYI, I understand that it could be more exact, in ...
0
votes
5answers
128 views

Regex fails to capture all groups

Using java.util.regex (jdk 1.6), the regular expression 201210(\d{5,5})Test applied to the subject string 20121000002Test only captures group(0) and does not capture group(1) (the pattern 00002) as it ...
1
vote
3answers
70 views

Capturing regular expression in Python

I would like to use the regular expressions in Python to get everything that is after a </html> tag, an put it in a string. So I tried to understand how to do it in Python but I was not able to ...
4
votes
3answers
258 views

REGEXP: capture group NOT followed by

I need to match following statements: Hi there John Hi there John Doe (jdo) Without matching these: Hi there John Doe is here Hi there John is here So I figured that this regexp would work: ...
3
votes
5answers
441 views

Javascript RegExp non-capturing groups

I am writing a set of RegExps to translate a CSS selector into arrays of ids and classes. For example, I would like '#foo#bar' to return ['foo', 'bar']. I have been trying to achieve this with ...
3
votes
1answer
477 views

SQL find-and-replace regular-expression capturing-group limit?

I need to convert data from a spreadsheet into insert statements in SQL. I've worked out most of the regular expressions for using the find and replace tool in SSMS, but I'm running into an issue when ...
0
votes
3answers
223 views

Java pattern repeated Capturing Groups

I have the following String 52x10x20x30x40 The string can be extended but with the same pattern and there will be other strings on both sides of it: for example "Hello something 52x10x20x30x40 bla ...
1
vote
1answer
160 views

Precedence rules for matching groups with regexp

Consider the following .NET regular expression: ^(REF)?(.{1,10})-(\d{12})-(\d+)$ It defines four groups, in which I'm interested and which I will analyse separately. Now, consider an input string ...
0
votes
6answers
229 views

In Perl, how many groups are in the matched regex?

I would like to tell the difference between a number 1 and string '1'. The reason that I want to do this is because I want to determine the number of capturing parentheses in a regular expression ...
1
vote
3answers
714 views

what does this django regex mean? `?P`

I have the following regex in my urls.py and I'd like to know what it means. Specifically the (?P<category_slug> portion of the regex. r'^category/(?P<category_slug>[-\w]+)/$
2
votes
3answers
768 views

Extract URL parameters with regex - repeating a capture group

I'm attempting to extract the URL parameters via regex and am sooo close to getting it to work. I even know what the problem is: my regex is stumbling on repeated capture groups. But I simply cannot ...
0
votes
2answers
341 views

Javascript Regex back-reference not populating all capturing groups

Strange one here (or maybe not), I am attempting to retrieve two capturing groups via Javascript regex, first group: one or more digits (0-9), second group: one or more word characters or hyphens ...
0
votes
1answer
454 views

Regex Capturing Groups in Vala

Is there such a thing? I've been looking around the Vala API and the Regex object seems to have no support for capturing groups so that I can reference them later. Is there currently any way to get ...
0
votes
3answers
332 views

replace all captured groups

I need to transform something like: "foo_bar_baz_2" to "fooBarBaz2" I'm trying to use this Pattern: Pattern pattern = Pattern.compile("_([a-z])"); Matcher matcher = ...
2
votes
3answers
509 views

Parsing (and taking the group) for Regular Expression with repetition

I tried to parse a rule using java and read whatever inside using RegEx, but since I am very new to RegEx, I found several problem. First, I try to parse a predicate with this RegEx (I don't know ...
1
vote
3answers
1k views

extract links regex c#

I've been trying to solve these problem for last two hours but seems like I can't find any solution. I need to extract links from an HTML file. There are 100+ links, but only 25 of them are valid. ...
1
vote
1answer
81 views

Regex .NET attached named group

I want to get attached named group. Source text: 1/2/3/4/5|id1:value1|id2:value2|id3:value3|1/4/2/7/7|id11:value11|id12:value12| Group1: 1/2/3/4/5|id1:value1|id2:value2|id3:value3| Sub groups: ...
0
votes
2answers
1k views

Regular Expression capturing group with optional delimiter

Seemed like a simple problem, I need to extract a capturing group and optionally limit the group with a delimiting string. In the below example, I provide a delimiting string of 'cd' and expect that ...
1
vote
2answers
53 views

Regular expression tools or methods that identifies the alternate that matched some target text?

In my debugging of regular expression, I need to find out which alternate among the alternatives actually resulted the match. For example, for the target string: "foo" with the regular expression: ...
0
votes
2answers
111 views

Regex enclosed with () Issue

I'm having a regular expression (\\w+[ ]*|-\\w+[ ]*)(!=|<=|>=|=|<|>| not in | in | not like | like )(.*) This has 3 sections sepearted by comma. When i try to match this against ...
2
votes
2answers
86 views

Regex Matching Question

It's been a few years since I've used regex, but if I remember correctly, the following should work: String test = "axaxa"; Pattern p = Pattern.compile("([a-c])x\1x\1"); Matcher m = p.matcher(test); ...
1
vote
2answers
534 views

how to fetch inner values from Regex nested backreference

I receive input from the server in the following manner (sample input data): [1284336000]: host1;event1;flag;state;counter;errors or warnings [1284336000]: host2;event1;flag;state;counter;errors or ...
4
votes
4answers
948 views

Recursive Regex Capturing in C#

I have to read in a file that contains a number of coordinates. The file is structured in the following way: X1/Y1,X2/Y2,X3/Y3,X4/Y4 Where X and Y are positive integers. To solve this problem I ...
0
votes
1answer
533 views

How do I use regular expression capturing groups with JFlex?

Although this question is about JFlex, it probably applies to other scanner generators such as lex, flex as well. If I have some rule, how can I create a capturing group in part of that rule and use ...
2
votes
2answers
618 views

Regex - Saving Repeating Captured Group

This is what I'm doing a = "%span.rockets#diamonds.ribbons.forever" a = a.match(/(^\%\w+)([\.|\#]\w+)+/) puts a.inspect This is what I get #<MatchData "%span.rockets#diamonds.ribbons.forever" ...
34
votes
3answers
3k views

How can we match a^n b^n with Java regex?

This is the second part of a series of educational regex articles. It shows how lookaheads and nested references can be used to match the non-regular languge anbn. Nested references are first ...
27
votes
1answer
1k views

How does this regex find triangular numbers?

Part of a series of educational regex articles, this is a gentle introduction to the concept of nested references. The first few triangular numbers are: 1 = 1 3 = 1 + 2 6 = 1 + 2 + 3 10 = 1 + ...
3
votes
2answers
484 views

Regular expression in Yahoo Pipes

I want to know what regular expression should be applied to replace 1 - 55 of 55 to only get 55 in Regex module of yahoo pipes. Thanks
8
votes
5answers
2k views

How to capture an arbitrary number of groups in JavaScript Regexp?

I would expect this line of JavaScript: "foo bar baz".match(/^(\s*\w+)+$/) to return something like: ["foo bar baz", "foo", " bar", " baz"] but instead it returns only the last captured match: ...
86
votes
5answers
17k views

Non capturing group?

After reading some tutorials I still don't get it. Could someone explain how ?: is used and what it's good for?
0
votes
3answers
174 views

What am I doing wrong with my regex?

I am trying to capture "Rio Grande Do Leste" from: ... <h1>Rio Grande Do Leste<br /> ... using var myregexp = /<h1>()<br/; var nomeAldeiaDoAtaque = myregexp.exec(document); ...
4
votes
6answers
172 views

Capturing <thisPartOnly> and (thisPartOnly) with the same group

Let's say we have the following input: <amy> (bob) <carol) (dean> We also have the following regex: <(\w+)>|\((\w+)\) Now we get two matches (as seen on rubular.com): ...
10
votes
2answers
2k views

Scala capture group using regex

Let's say I have this code: val string = "one493two483three" val pattern = """two(\d+)three""".r pattern.findAllIn(string).foreach(println) I expected findAllIn to only return 483, but instead, it ...
9
votes
2answers
2k views

Scala regex Named Capturing Groups

In scala.util.matching.Regex trait MatchData I see that there support for groupnames , I thought that this was related to (Regex Named Capturing Groups) But since Java does not support groupnames ...
2
votes
3answers
421 views

Is there a regex flavor that allows me to count the number of repetitions matched by the * and + operators?

Is there a regex flavor that allows me to count the number of repetitions matched by the * and + operators? I'd specifically like to know if it's possible under the .NET Platform.
2
votes
2answers
801 views

Saving substrings using Regular Expressions

I'm new to regular expressions in Java (or any language, for that matter) and I'm wanting to do a find using them. The tricky part that I don't understand how to do is replace something inside the ...
1
vote
5answers
548 views

Regex with optional part doesn't create backreference

I want to match an optional tag at the end of a line of text. Example input text: The quick brown fox jumps over the lazy dog {tag} I want to match the part in curly-braces and create a ...
2
votes
3answers
2k views

Java Regex, capturing groups with comma separated values

InputString: A soldier may have bruises , wounds , marks , dislocations or other Injuries that hurt him . ExpectedOutput: bruises wounds marks dislocations Injuries Generalized Pattern Tried: ...