02-12-2011 03:36 AM
Hello everyone,
Is there any way to index the characters in a string as if it were an array and remove them starting from the second position and on. I just want to end up with the first letter or number so that I can later concatenate strings to it.
Thank you for any help!
-Michael
Solved! Go to Solution.
02-12-2011 03:51 AM
Hi Michael,
Yes. Use the "Sring Subset" function. Set the start to 0 (default) and the length to 1.
This will give you the first character of the string.
steve
02-12-2011 03:55 AM
thank you steve!