Using the Regular Expression action in Nintex Workflow, you can get the digits before a decimal point. Here are the steps to follow: Insert a Regular Expression action into your Nintex Workflow. Configure it with the following settings: String = Your number from a column or workflow variable. String Operation = Replace Pattern = \.[0-9]+... Continue Reading →
Regular Expression to Get All Characters After a Specific Character in Nintex Workflow
You can get all the characters after a specific character in a string using Nintex Workflow. Here are the steps to follow: Insert a Regular Expression action into your Nintex Workflow. Configure it with the following settings: Pattern = (^.*?(?=-)-) where the "-" is the character (replace both "-" with your desired character) Replacement text = Keep this empty Input... Continue Reading →
Remove a Forward Slash at the End of a URL String in Nintex Workflow
I recently had a need to remove a forward slash ("/") from the end of a URL text string using Nintex Workflow. Here are the steps to follow: Insert a Regular Expression action into your Nintex Workflow. Configure it with the following settings: Pattern = /[^/]*$ Replacement text = Keep this empty Input text = Insert your URL text... Continue Reading →
Remove Spaces from Text Strings with Nintex Workflow
You can easily remove all spaces in text strings in Nintex Workflows. Follow these steps: Insert a Regular Expression action into the workflow. Configure it with the following settings: Pattern = \s Replacement text = Keep this empty Input text = Insert your text string Store result in = Text workflow variable You can then... Continue Reading →
Error Creating an Item with a Person/Group Field in Nintex Workflow
Ran across an issue with a Nintex Workflow 2013 when using the "Create an item" action. The workflow runs when a list item is created and creates a document set in another list with metadata from the original item. One of the fields in the original item is a Person/Group field, which the workflow action... Continue Reading →
Number Rounding Using Nintex Workflow (Part 2)
In my previous post titled "Number Rounding Using Nintex Workflow (Part 1)", I discussed how to round a number using Nintex Workflow. Well, it turns out that this approach only works for numbers less than 1,000. When you run the previous workflow I mentioned on a number greater than or equal to 1,000, you get... Continue Reading →