Tagged Questions
The backreference tag has no wiki summary.
6
votes
6answers
1k views
Python Regular Expressions to implement string unescaping
I'm trying to implement string unescaping with Python regex and backreferences, and it doesn't seem to want to work very well. I'm sure it's something I'm doing wrong but I can't figure out what...
...
5
votes
2answers
1k views
Backreferences syntax in replacement strings (why dollar sign?)
In Java, and it seems in a few other languages, backreferences in the pattern is preceded by a slash (e.g. \1, \2, \3, etc), but in a replacement string it's preceded by a dollar sign (e.g. $1, $2, ...
5
votes
1answer
463 views
Backreferences in lookbehind
Can you use backreferences in a lookbehind?
Let's say I want to split wherever behind me a character is repeated twice.
String REGEX1 = "(?<=(.)\\1)"; // DOESN'T WORK!
String REGEX2 = ...
5
votes
2answers
2k views
JavaScript - string regex backreferences
You can backreference like this in JavaScript:
var str = "123 $test 123";
str = str.replace(/(\$)([a-z]+)/gi, "$2");
This would (quite silly) replace "$test" with "test". But imagine I'd like to ...
4
votes
2answers
60 views
Info about backtracking control verbs
I been searching info about this verbs,
There is not much info about that, i only found info like this Wikipedia but is not about the verbs, they just mentioned.
I googled it, but not so lucky,
i just ...
3
votes
1answer
122 views
How can I backreference matches in a recursive regular expression?
I have a string like this:
$data = 'id=1
username=foobar
comment=This is
a sample
comment';
And I would like to remove the \n in the third field (comment=...).
I have this regular expression ...
3
votes
3answers
324 views
Named backreferences with preg_replace
Pretty straightforward; I can't seem to find anything definitive regarding PHP's preg_replace() supporting named backreferences:
// should match, replace, and output: user/profile/foo
$string = ...
3
votes
1answer
413 views
Backslashes in gsub (escaping and backreferencing)
Consider the following snippet:
puts 'hello'.gsub(/.+/, '\0 \\0 \\\0 \\\\0')
This prints (as seen on ideone.com):
hello hello \0 \0
This was very surprising, because I'd expect to see something ...
3
votes
3answers
439 views
ColdFusion - pass regex backreference to function call
I'm using ColdFusion's reReplace() function for regular expression pattern replacement.
I'd like to use a function call for the replacement string, and pass a matched backreference to it.
Something ...
2
votes
2answers
122 views
Using more than nine back references in an R regex
The code below does not work, because the replacement string for \10, \11, and so on, cannot be read properly. It reads \10 as \1 and print 0 instead, can you help me fix it?
There is an answer in ...
2
votes
1answer
92 views
Problem with backreferences in C#'s regex
The goal is to extract time and date strings from this:
<strong>Date</strong> - Thursday, June 2 2011 9:00PM<br>
Here's the code:
Match m = Regex.Match(line, ...
2
votes
4answers
159 views
regex, problem with backreference in pattern with preg_match_all
i wonder what is the problem with the backreference here:
preg_match_all('/__\((\'|")([^\1]+)\1/', "__('match this') . 'not this'", $matches);
it is expected to match the string between __('') but ...
2
votes
1answer
163 views
Javascript regexp: Using variables in backreference pattern?
I've got a pattern to find matches in a querystring:
'url.com/foo/bar?this=that&thing=another'.replace(/(thing=)([^&]*)/, '$1test')
What I'd like to be able to do is use variable values as ...
2
votes
3answers
199 views
Replace characters using regex grouping with sed
I have a text file that is like this:
FOO BAR PIPPO PLUTO 31337 1010
FOOZ BAZ 130
VERY LONG LINE LIKE THIS THEN A NUMBER LIKE 42
I need to turn it into:
FOO-BAR-PIPPO-PLUTO 31337 1010
FOOZ-BAZ 130
...
2
votes
2answers
497 views
How to replace all the blanks within square brackets with an underscore using sed?
I figured out that in order to turn [some name] into [some_name] I need to use the following expression:
s/\(\[[^ ]*\) /\1_/
i.e. create a backreference capture for anything that starts with a ...
2
votes
2answers
453 views
Circumvent the sed backreference limit \1 through \9
The sed manual clearly states that the available backreferences available for the replacement string in a substitute are numbered \1 through \9. I'm trying to parse a log file that has 10 fields.
I ...
2
votes
1answer
144 views
Regex: How to replace with the string literal “\1”?
I have a string, say r"a". I want to replace every r"a" with the string r"\1", but my regex engine does not understand this.
I have tried:
r"\1" -- crashes (can't match group 1 because there is no ...
2
votes
1answer
143 views
Regular Expression: back references
sed 's/^\(\h*\)\(.*\)$/\1<!-- \2 -->/' web.xml
I think that this should take this xml:
<a>
<d>
bla
</d>
</a>
And turn it into:
<!-- <a> -->
...
2
votes
4answers
507 views
Regex: recursive backreferences - what for?
I found some interesting possibility in many regex engines:
It's possible to place backreference inside the capture group and reference this group.
For example: (\1)
My question: for what regex ...
2
votes
6answers
950 views
RegEx Backreferences
Having the following regular expression:
([a-z])([0-9])\1
It matches a5a, is there any way for it to also match a5b, a5c, a5d and so on?
EDIT: Okay, I understand that I could just use ...
2
votes
2answers
3k views
Python: \number Backreference in re.sub
I'm trying to use python's re.sub function to replace some text.
>>> import re
>>> text = "<hi type=\"italic\"> the></hi>"
>>> pat_error = ...
1
vote
1answer
55 views
ASPX attribute regex parsing in c#
I need to find attribute values in an ASPX file using regular expressions.
That means you don't need to worry about malformed HTML or any HTML related issues.
I need to find the value of a ...
1
vote
2answers
70 views
Regex for wrapping digits with curly braces?
I am trying to using Python's re.sub() to match a string with an e character and insert curly braces immediately after the e character and after the lastdigit. For example:
12.34e56 to 12.34e{56}
...
1
vote
1answer
79 views
Why is the rightmost character captured in backreference when using a character class with quantifiers?
If I have pattern ([a-z]){2,4} and string "ab", what would I expect to see in backreference \1 ?
I'm getting "b", but why "b" rather than "a"?
I'm sure there is a valid explanation, but reading ...
1
vote
5answers
148 views
Help with back reference regex in Vim
I am trying to write a regular expression in vi to match any whitespace character followed by any digit. Then, at each match, insert a dollar sign between the whitespace and the digit. Here is an ...
1
vote
1answer
119 views
Getting multiple matches from regex pattern in Python
I'm writing a regular expression to parse arguments in a fashion similar to shell arguments, with spaces and quoted strings as the delimiters, as well as backslash escaping. This seems to work on ...
1
vote
1answer
148 views
How to use backreferences in PHP
I want to add a character to the end of each file extension found in a body of text using preg_replace().
Here is some sample text:
...
1
vote
3answers
325 views
Perl pattern match variable question
I'm trying to open a file, match a particular line, and then wrap HTML tags around that line. Seems terribly simple but apparently I'm missing something and don't understand the Perl matched pattern ...
1
vote
2answers
231 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 ...
1
vote
2answers
315 views
How can I find, increment and replace in php?
I have strings in the form \d+_\d+ and I want to add 1 to the second number. Since my explanation is so very clear, let me give you a few examples:
1234567_2 should become 1234567_3
1234_10 should ...
1
vote
1answer
315 views
Negative backreferences in MySQL REGEXP
MySQL manual is not very detailed about what expressions it supports, so I am not sure if the following is possible with MySQL at all.
I am trying to create a query with RLIKE which matches the ...
1
vote
3answers
306 views
Can one use named backreference's in Apache mod_rewrite
All,
I've come across an interesting little quirk in one of my RewriteRules, which I wanted to resolve by the use of named back references. However from what I can see, this is not possible in ...
1
vote
2answers
74 views
empty backreference causes match failure in PHP… is there a workaround?
I'm having trouble with a regular expression in PHP that uses a potentially empty backreference. I was hoping that it would work as explained in http://www.regular-expressions.info/brackets.html:
...
1
vote
1answer
2k views
Problem with RewriteCond %{QUERY_STRING}, backreference not dispaying in final URL
I have the following in my .htaccess file:
RewriteCond %{QUERY_STRING} ^route\=product\/category\&path\=35\&page\=([0-9]+)$
RewriteRule ^index\.php$ ...
1
vote
2answers
135 views
javascript regex: match altered version of first match with only one expression
I'm writing a brush for Alex Gorbatchev's Syntax Highlighter to get highlighting for Smalltalk code. Now, consider the following Smalltalk code:
aCollection do: [ :each | each shout ]
I want to ...
1
vote
1answer
192 views
Are back references possible in flex (lexical analyser)?
I'm used to play with regexp in languages where I can use parenthesis to capture references. The only thing near that in flex that I'm seeing is the yytext variable. But it's contents are the full ...
1
vote
2answers
555 views
if match(g:possibilities, “using backreferences after the regex in vim\(script\)?”)
I'd like to be able to, say, check the value of $1 inside the if block, to get the first backreference. However vimscript is not perl.
Is there some way to do this? I'm aware of the possibility of ...
1
vote
2answers
894 views
RewriteCond backreference not working
If I go to http://www.example.com I want it to stay there, which is working fine.
If I go to http://bar.example.com it redirects to http://www..com, which is wrong
I want it to go to ...
0
votes
0answers
21 views
Drupal 7: naming back references
I'm developing a website in Drupal 7, and I'll need a backreference from a node to another, but also I need to give names to those relationships; different names from A to B and B to A, but all of ...
0
votes
1answer
31 views
preg_replace backreference date function
PHP 5.2.15
I am trying to replace {date[F]} with the date function.
I have the pattern which works great.
preg_replace('/({date\[(.*?)\]})/', date(${2}), $subject);
I have tried ...
0
votes
2answers
41 views
PHP backreferences followed by variables starting with numerals
I was working on a dynamic way to update a config.php file and I ran into an interesting glitch that I can't quite solve. Below is my code for updating the config.php file:
if( isset( ...
0
votes
1answer
24 views
can't find error in modrewrite backreference
I want to display contents as (not existing) sub-folders. All those sub-folder strings should be sent to file.php and attached as variable: "n".
My PHP script is already working fine. (If I attach ...
0
votes
1answer
41 views
PHP preg_replace_callback correct escaping to handle hash symbol ('#')
I'm doing some work with a Twitter feed and want to turn any hashtags into a clicable URL.
A hashtag is a hash symbol ('#') immediately followed by a word acting as a search tag - and contains no ...
0
votes
0answers
99 views
Notepad++ Regex Backreference missing
I have this HTML part :
<a href="http://always-same-path.to/my/file.pdf">Random reference</a>
This line exists in a lot of files.
I need to replace it with :
Random reference ...
0
votes
5answers
48 views
Negating a backreference in Regular Expressions
if a string has this predicted format:
value = "hello and good morning"
Where the " (quotations) might also be ' (single quote), and the closing char (' or ") will be the same as the opening one. I ...
0
votes
1answer
36 views
Multiple Backreferences in Matcher.replaceAll()
Matcher.replaceAll() with a single backreference works great (i.e. Matcher.replaceAll("$2")).
But I haven't been able to make it work with two or more backreferences, e.g. Matcher.replaceAll("$1$2").
...
0
votes
0answers
63 views
PHP: Can you use a backreference as a group name? [closed]
Possible Duplicate:
Named backreferences with preg_replace
I want to use named groups ((?Pfoo)) with backreference. Is it possible? How?
I've tried:
#(?P<\1>[a-zA-Z ]+):(.+)#i
\0 ...
0
votes
1answer
53 views
RewriteCond - backreference with no value
got this strange issue:
i'm trying to translate this address
www.mydomain.com/index.asp?pag=XXX&id=YYY
into
www.mydomain.com/XXX-YYY
i'm trying with
RewriteCond %{QUERY_STRING} ...
0
votes
0answers
60 views
rewritecond rewriterule internal 500 error
I have this code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{ENV:REDIRECT_SUBDOMAIN} =""
RewriteCond %{HTTP_HOST} ^(www\.)?([a-z0-9][-a-z0-9]+)\.mysite\.com\.?(:80)?$ [NC]
...
0
votes
1answer
57 views
Backreference Data in preg_replace too large?
I am running the following preg_replace:
$page['HTML'] = preg_replace(
'#<h(\d+)>(.*?)</h\1>(.*?)(\#{5}|$)#si',
'<div class="Toggle"><h$1>$2</h$1><div ...