Hi,
I have to remove the symbols like
±/%# etc from the end of a string until that strings ends with numbers 0 to 9 or any letters from a to z.
Example:
Thanks
Soumya
Hi,
I have to remove the symbols like
±/%# etc from the end of a string until that strings ends with numbers 0 to 9 or any letters from a to z.
Example:
Thanks
Soumya
Hi @soumya123 . Welcome to the KNIME community.
This can be achieved with the String Replacer node, using the regular expression as follows:
Pattern:
(.*[0-9A-Za-z]).*
Replacement Text:
$1
This “captures” everything up to and including the final letter or digit, and discards the rest
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.