Is it possible to create a single regexp to replace < and > with their entity equivalents?
s/<|>/<|>/
|
|
Is it possible to create a single regexp to replace < and > with their entity equivalents?
|
|||
|
|
|
|
Thanks everyone. I was looking for something I could use in Komodo IDE, so variables and conditional statements were not an option. Here is the best solution I found, which was based on a Sed tutorial at Developerworks:
|
||
|
|
|
|
It is easy in to do this in just about any language without using regex: PHP:
Python:
etc. |
||
|
|
|
|
You could use a hash-variable, something like:
|
||
|
|
|
|
I'm guessing that you may have to convert If this is the case there's most likely a library or function in whichever language/platform you're using (e.g. in Java check out StringEscapeUtils). Indicate which language you're using and someone here will no doubt point you to something appropriate. |
||
|
|
|
|
It depends on the language you are using. In Perl, you could do:
Other languages usually allow you to provide a match callback function that returns a replacement string. To wit: In C#, you can do this:
|
|||
|
|