I'm working with PL / SQL.
Through REGEX, how do I find all expressions that are different from:
<cod_orgao_destino>9577</cod_orgao_destino>
Thank you!
I'm working with PL / SQL.
Through REGEX, how do I find all expressions that are different from:
<cod_orgao_destino>9577</cod_orgao_destino>
Thank you!
It is possible thanks to the negative lookahead ("I do not know how to translate this)" (?! abc)!
You can accomplish this by using this expression:
^((?!<cod_orgao_destino>9577<\/cod_orgao_destino>).)*$
I found a place explaining in detail: Here