Hello,I have to clean up a .txt and i need to remove unwanted expressions.I need to remove all expressions that contains characters and expressions like dd.dd.ddHere is an example,Input:
Expected output:
Thank you.
In formula tool:
REGEX_Replace([Exempted],"([a-z\s]+|\d{2}\.\d{2}\.\d{2})","")
See attached where I wrap it in a multi-field formula and convert your field to a number format... Do you need visible commas?
Hi @BautistaC888
One way is to use the regex match. The regex syntax can be something like this
.*[^0-9].*||\d\d\.\d\d.\d\d
https://help.alteryx.com/current/designer/regex-tool
Hi @BautistaC888,
Use the regex match function in formula:
([0-9.,]+) = get the your figures
(\d{2}\.\d{2}\.\d{2}) = remove the pattern dd.dd.dd
regards,