J
Jay S
Hi,
Can't figure out the following:
<concept>
I want to match a specified string followed by any string that is *not* a
different specified string.
</concept>
<specific example>
strA = "value=""
strB = (anything other than strC, i.e. anything that is not """)
strC = """
Sample string: value="Some text & punc. here!"
Desired replacement: value="Some text & punc. here!"
It's not sufficient to simply replace """ with "\"" since I don't want
to replace all instances of """ in a given file.
</specific example>
Thanks for any help.
Jay
Can't figure out the following:
<concept>
I want to match a specified string followed by any string that is *not* a
different specified string.
</concept>
<specific example>
strA = "value=""
strB = (anything other than strC, i.e. anything that is not """)
strC = """
Sample string: value="Some text & punc. here!"
Desired replacement: value="Some text & punc. here!"
It's not sufficient to simply replace """ with "\"" since I don't want
to replace all instances of """ in a given file.
</specific example>
Thanks for any help.
Jay