Is there anyway to select text from a string other than using the Mid, Left or Right functions? For example could you do something like the following:
str1 = "This is a test"
str2 = "test"
str3 = str1 - str2
str3 = "This is a"
I know this is a simplistic example but you get the general idea. Are there any suitable methods?
str1 = "This is a test"
str2 = "test"
str3 = str1 - str2
str3 = "This is a"
I know this is a simplistic example but you get the general idea. Are there any suitable methods?