$a = "<no> 3232 </no> "
$a =~ s/<no>(.*)</no>/000/gi ;
I am expecting that $a becomes "<no> 000 </no> ", but it is not working.
|
show 1 more comment
feedback
|
|
You need look-around assertions.
Have you considered reading a Perl book or two? You are not learning effectively if you have to come to Stack Overflow to ask that sort of questions that can be easily answered by reading the fine documentation. | |||||
feedback
|
|
You could forgo the fancy lookahead or lookaround assertions and come up with a slightly longer regular expression:
It might be a little easier to read, but it's slightly counter-intuitive in that you're replacing | |||
|
feedback
|
|
If you just want to replace the text between the tags, then you may want to look at lookahead and lookbehind assertions. And you need to either use a regex delimiter other than "/" or escape the "/" in the regex:
| ||||
|
feedback
|
|
Firstly, the / in is being interpreted as the end of your pattern and that's causing syntax errors. Choose a different delimiter for your substitution operator:
But then you have a set of capturing brackets and you're not using what they are capturing. Which makes me think that perhaps even fixing the syntax won't give you the behaviour you want. You don't want to replace the tags, so you can add those to the replacement:
Or not replace them at all by using lookarounds so they aren't part of the matched text:
But given that "it's not working" isn't a very good description of the problem, I don't know what you're expecting to see. | |||||||||||||
feedback
|
|
Firstly, the / in the closing is being treated as an end-quote to the regular expression. Either backslash it:
or use a different character to / in your regex:
Secondly, I'm guessing you're trying to parse an XML document with this and change data. I'm also guessing that you have many You can use a non-greedy match, that is one that will match as little as possible. You can put a question mark after the * like so:
Since this still replaces the
In the case where your
Why $3? Because $2 is whatever you captured with
which is probably about as efficient as you're going to get for this problem. As an aside, it is normally a bad idea to try to parse XML with regular expressions, because XML is too varied for regular expressions to parse. I quite like This is all covered in the
Hope all the examples help clarify things a bit. | ||||
|
feedback
|
|
Just to keep this as simple as possible, you have a number of problems, so lets eliminate the obvious ones first. First, you can't use the slash character ("
Now perl will interpret the Secondly, your regex is wrong. The s/// regex instructs perl to substitute/reformat the pattern in the first section with the pattern in the second section. Your instruction as it is tells perl to substitute everything between the first two slashes with "000" and assign it to variable $a. The brackets you used in the regex allow you to break the expression into smnaller pieces and re-arrange things but you haven't used them, however you are on the right track. To re-use the parts of the expression in the first set of slashes that you want to keep, you place brackets around them. In the second part of the expression you can refer to those "pieces" by using $1, $2 etc. to refer to the stuff within each set of brackets. Keeping this in mind you might be tempted to come up with somethign like:
This is close - as suggested above - but testing will reveal that it is still not quite right; even more mystifying the output you will get this time is The following expression will work, but you'll get a space after the first so your out put will be
My preference would be to use a variable in place of the string "000" and for that reason my code would probably look something like this:
Using a variable makes things a bit clearer in my opinion (although they could be better named!) and also allows the text to be substituted (the "000") to be easily changed without having to mess with the regex. The ? in the regex is meant to ensure that the regex doesn't get "greedy if there is more than one set of no elements in the string - this causes the .* to sstop matching as soon as it encounters the matching pattern, in this case "". | ||||
|
feedback
|
perldoc perlrewill probably help you out. StackOverflow is the right place for you after you did this kind of research and still find yourself in trouble. In doing so, you'd also be able to ask better questions and better point out exactly what is the problem and what you have tried to solve it and what you found out already and why it all didn't help yet. – Olfan Sep 2 '10 at 12:10