I have a field with comments. Some of the comments are just "no" but with varying trailing "o"s. I want to do a transformation to these comments, such that I only get "no" returned. How can I achieve this using regex?
Eg:
remove_trailing_os("noooooo")
should output "no"
remove_trailing_os("nooOOoooooooo")
should output "no"