cancel
Showing results for 
Search instead for 
Did you mean: 

How do I check for Spaces in A Text String?

rachel_py_tan
Level 2
Hi all, Any ideas on how to check for spaces in a text string? Currently, I have split text by length into a line text. It removed all of my spaces after I've split my text value. Any ideas will be much appreciated. Thanks, Rachel
2 REPLIES 2

DexterWhelan1
Level 4
You could try using a decision stage to check the entire string before splitting it and searching for an InStr([Your String], "" "") > 0 and the true or false value returned indicates found space or not.

rachel_py_tan
Level 2
Thank you Dexter. 🙂