A picture would help. Is the column a character column, showing the % or / or ^ ? Or is it a numeric column with just a number?
If it is a character column, the contains() function might do what you need.
contains("37%", "%")
3 // position of the %
contains("37%", "/")
0 // / not found (position 0 not a valid position)
Craige