Replace a special character
-
Hi,
I´m using this [^\x00-\x7F]+ to find the “no ASCII” characters and then replace them with a space. But when it finds 2 or more “no ASCII” characters together, it only replaces one space for all the characters that are together.
Example:
FIND: “ASASÉÉSSS”
REPLACE: “ASAS SSS”And I need like this: “ASAS SSS” (two spaces)
Any help ?.
Thanks. -
dosn’t it help to replace the + mulitplier with a question mark?
Like[^\x00-\x7F]?
Cheers
Claudia -
How about just forget the
+
and the?
altogether? -
-
Well, we RARELY get the full story here…with the FIRST posting.
:-)
(Looks like we got the full story THIS time–predicting the future!!!)
-
Thanks. It works without the + and ?.