
Phil
Code: Select all
test$="aftershave"
test$=RemoveString(test$, "after")
Debug (test$)
test$="aftershave"
test$=RemoveString(test$,"shave")
Debug (test$)
Code: Select all
test$="aftershave"
test$=ReplaceString(test$,"after","")
Debug (test$)
test$="aftershave"
test$=ReplaceString(test$,"shave","")
Debug (test$)