Hello,
how can I remove all punctuation. Thus, only those letters and numbers stand?
Example:
String before: "§%67778/%&45$$---§§$5FCGZZ-GZGUU(=&/+%/&%E$Dfcfhzb+++zvb
String after: 67778455fcgzzgzguuedfcfhzbzvb
My Code until now:
REPLACE(
REPLACE(
REPLACE(
REPLACE(
REPLACE(
TRANSLATE(
LOWER(TRIM(BEZEICHNUNG))
, '@-.', '@' )
, ' ', '')
, ' ', '')
, '', '')
, '-', '')
, CHR(10), '')
thanks for your help in advance