I need to remove ordinals via regex, but my regex skills are quite lacking. The following locates the ordinals, but includes the digit just prior in the return value. I need
Try a negative lookbehind:
(?<=[0-9])(?:st|nd|rd|th)
assuming the dialect of regex supports it.