Is there a regex like syntax that can be incoporated with the STRING MANIPULATION node? I am only interested in string position at this point, although any other information would be helpful.
For example, in standardizing data I need to change/remove abbreviations. Therefore, I would ideally like to replace($column$, "CO", "COMPANY"), but this will replace "CO" wherever it occurs. Therefore, I would like to use a statement more along the lines of ( CO)$
Is this possible? Should I be using a different node? Thanks in advance,
Will that focus the replace on discrete strings containing only the characters "CO"? The problem I am having is defining the end of the string element as the end of the string. Otherwise, I end up replacing strings I do not intend to replace.
Thanks with your help thus far...I will go try and see what I get! Otherwise, I have a partial work around, but it is not that elegant.