Heres what you can do:
lets say that you have a string, aptly named $string. This string contains some text, ie a funny quote from our president dubya... "There's money in the budget for Medicare.. it's a doubling."
so, if we want the first character in the string all we have to do is perform this simple task:
$string = "There's money in the budget for Medicare.. it's a doubling.";
print $string[0];//gives you the letter T
print $string[6];//gives you the letter s
and so on. The inset numbers start with 0 so make sure to remember this. If I wanted the 205th character, all i have to do is print $string[204];.
Hope that this helps
Brad Taylor
Senior Web Producer
bradcom industries ltd
brad_at_getcoded.net(replace at with @)