Regex to find word
Anyone know the Regex to find if a variable contains a word eg this var has "Surplus Percentage Total in the Amount of $2000.00"
So I need to know it contains the word 'Percentage'?
Here is my code
cfset xyz='Surplus Percentage Total in the Amount of $2000.00'
cfset foundword= REFind('Percentage', xyz)
The above is not working
