Trying to achieve the following:
Make a Regex Matches for:
Example: *.0
So Wildcard then a decimal point then a zero.
Reason I want this is because I want to do an IF statement for:
IF *.0 then add another Zero.
If anyone can help that would be great, or point me in the right direction!
Thanks.
Word boundary \b
Wildcard .*
Dot \.
Number \d
Edit:
Thanks Alexander Pavlov for the reminder to set the boundary