How do I check for Spaces in A Text String?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-06-17 02:56 PM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-06-17 06:52 PM
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.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-06-17 07:14 AM
Thank you Dexter. 🙂
