I have a string which can contain an arithmetic operator e.g amount*exrate.
I want to be able to search the string for any of the operators i.e +,-,*,/. Is there any way I can use the instr function for this i.e
instr(string,"+" or "-" or "*" or "/") rather than nest a few if functions
Also...