Skip to main content
Nintex Community Menu Bar

Remove addition content in String

  • April 19, 2018
  • 3 replies
  • 8 views

Forum|alt.badge.img+1

First of all I'm new to Nintex Workflow, your help is much appreciated.

I have a variable like this 1;2;

How to remove content after the first semi colon?

3 replies

Forum|alt.badge.img+16

So you just want the first value (i.e. "1")?


Forum|alt.badge.img+14
  • Scholar
  • April 20, 2018

use regular expression action with a pattern like

;.*$

214500_pastedImage_1.png


Forum|alt.badge.img+1
  • Author
  • April 20, 2018

Thanks happy.png That is all!