Hai, How do I do if I have a row of data such that 10.2.3.123 and I wanted it to be into a new column with : Column A | Column B | Column C | Column D 10 | 2 | 3 | 123 Would you mind to give me some advice? Thank You in Advance, ZO
Hi zo, Since tExtractdelimitedfields component uses regex to split a filed and the regex syntax uses special characters as operators, make sure to precede the regex operator you use as a field separator by a double backslash. For example, you have to use "\\|" instead of "|". Best regards Sabrina