would you please help me,
i have a 300 line script that has only 1 bug left.
i have been trying for days to get this 1 bug out.
the bug has to do with charcters. : = < > ¶ etc.
i need a regsub command.
I have read the manuals and tried until i have given up.
please help.
i want a regsub command that replaces ALL charcters with "x"
except a-z , A-Z and 0-9
regsub -all -- {} $text "x" text
regsub -all -- {![[:alnum:]]} $text "x" text
regsub -all -- {![A-Za-z0-9]} $text "x" text
thanks
I once was an intelligent young man, now i am old and i can not remember who i was.