string char_at(string source ,int index )
This function returns the character in source which is at position index.
Returns a portion of a string.
char_at( "Lorem Ipsum." , 3);
Would result in:
Returned: e