Page 1 of 1

Posted: Thu Dec 21, 2006 1:37 pm
by DSguru2B
Nothing out of the box but you can use the LEFT() function.

Code: Select all

if LEFT(in.Link, 1) = " " then 'Space present' else 'No space'

Posted: Thu Dec 21, 2006 2:38 pm
by ray.wurlod
Do you need to find it? Trimming leading space characters works just as effectively if there are some and if there are none. You could always compare the trimmed version with the original, perhaps in stage variables, then use the trimmed version as you wish.