I have a string that I want to delete everything after a certain character. I have looked at using rtrim, but as far as I can tell it is not what I'm looking for...
The string I receive looks like this...
item 1, some text
I want to chop it at the "," so all I have in my variable is "item 1"
I think this is pretty easy, can anybody tell me what I'm missing?
thanks in advance,
--TK