Does anyone know how to extract the nth character from a string- nice simple code like:
charfromstring(mystring, 33) to extract the 33rd character of mystring
obviously this is wrong- what is the correct way to do it.
Even better, how could I split a string at the nth character
eg.
1 My name is John
2 My name is Brian
3 My name is George
Split at 10th character:
1 My name is
a John
2 My name is
b Brian
3 My name is
c George