Solved

How to split Regular Expression in Nintex


I am trying to split a value in Nintex, Sharepoint 2010
My value: ABCD123456
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.

icon

Best answer by Aleximo 12 May 2022, 15:47

View original

3 replies

Userlevel 5
Badge +14

Can you provide any more details?

Which Workflow Action are you using to perform this operation?


 


Where do you see the error? In the history log?


 


Any Screenshots? 


 


 

Badge +8

hey @JodaJacksoncatr ,


 


u need to use \ to match """.

Badge +11

You can try this: (\.*.)*\


 






 


 

Reply