Hi,
I have a String like this "Hello World"
How do I get specific characters of this string like the second letter? Is this even possible?
There are numerous System expressions that deal with text in the Manual.
Some that may be of use to you are:
[quote:3s0xjxgi]
find(src, text)
Find the first index within src that text occurs, else returns -1.
left(text, count)
Return the first count characters of text.
len(text)
Return the number of characters in text.
mid(text, index, count)
Return the count characters starting from index in text.
right(text, count)
Return the last count characters of text.
So for instance, if I had a string such as "My World" stored in a variable called 'mytxt', then
mid(mytext, 4,1) would just show the letter 'o'.