2017-05-07

Regex - Remove brackets surrounding integer numbers

Search for "any text here: <([0-9]+)+>"
and replace it with "any other text here: $1"

This will replace "any text here: <342>" with "any other text here: 342"

No comments:

Post a Comment