Count total number of characters in a string

0
Hi guys,  I need to count the total number of characters in a string in a microflow. I have read about using a custom java action for that matter. Any other way?  
asked
2 answers
3

Hi Alejandro,

 

Maybe you could try this one: length($String)

answered
0

Hi Alejandro Castrelo 
1. Create a New  Variable of type Integer/Long in  and Name it Count 
2. The Value of the Variable  is : length($YourString)
This Function  Returns the number of the yourString characters

answered