How can you return the value of a character at a specified position in a string?
For instance, say I have the following string:
"Baseball, Football, Hockey and Basketball"
If I wanted to return the value of the character at positions 5 and 23 ("b", "c"
, how would I be able to do it?
I tried using the "Find" function, but that only returns the first occurrence of a character. Not quite, what I am looking for. I also tried incorporating a loop structure and modified the Find function, but it seems as though the "Find" function is limited.
Any Suggestions?
Thanks in Advance!!!
For instance, say I have the following string:
"Baseball, Football, Hockey and Basketball"
If I wanted to return the value of the character at positions 5 and 23 ("b", "c"

I tried using the "Find" function, but that only returns the first occurrence of a character. Not quite, what I am looking for. I also tried incorporating a loop structure and modified the Find function, but it seems as though the "Find" function is limited.
Any Suggestions?
Thanks in Advance!!!