I am passing the value "citystate" into a form. This value is in the format such as "Tustin, CA". I want to be able to parse through the string and pull out two values: city and state. If I limit the user to only two characters for state, I think I'm okay with using the right(string,length) syntax, but how can I pull the rest of the string? I know some languages have a substr() function or something similar. Is there any way to pull out all of a string until the coma? Any ideas? Thanks!