Can one use Boolean "*" in the REPLACE function - Need to convert HTML to text - delete all <*>
-
Can one use Boolean "" in the REPLACE function - Need to convert HTML to text - delete all <>
-
@D.J.-Gibson
yes, you can do this by using regular expressions in the replace panel of np++here is an example:
original data:
<title>test me</title> <a href="https://notepad-plus-plus.org"> https://notepad-plus-plus.org </a>
activate search mode: regular expression:
find what: <(.*?)> replace with: (leave this line empty)
result:
test me https://notepad-plus-plus.org