Search code examples
splitsharepoint-2010nintex-workflow

How to split Regular Expression in Nintex


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.

enter image description here


Solution

  • 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 "\\".