I am trying to split a value in Nintex, Sharepoint 2010
My value: ABCD\123456
I want to split "\"
and return this:
ABCD
123456
But when I try this, it returns an error:
Error in regular expression action. parsing "\" - Illegal \ at end of pattern.
I think Mike gave the correct answer
Just use "\\" instead of "\" in the Pattern. I tried this by creating a sample workflow and it is working fine with "\\".