Hi!
I'm trying with no success to replace te string "john wick" for the string "john wick"
The difference between the two strings is that one have a tab and the other have a space between the words.
This string are in a csv file separated by tabs, and that misplaced tab in the record causes a error "Too Many Fields in record"
I tried to solve it using:
Replace([Field], "john wick", "john wick")
but the formula does not find the string with the embeded tab
Maybe this can be acomplished using REGEX_Replace, but I'm not shure about the sintax.
Other option wold be to ignore delimiters between "john" and "wick" when parsing to columns, but I don't know the sintax either