Hi,
I’ve searched for a method to remove all non-digit chars from a selection.
I didn’t found a proper package.
I tried CTRL + H with the RegEx /[^0-9]+/ but it replaced literally. The RegEx was not interpreted. Example:
I have this selection
bbsc 22.999.333/1111-77
, used CTRL + H this way:
and the replace result was:
/[^0-9]+/
What am I missing? Thanks!