Generation

regexSat, 19 Nov 2022

Strip all characters that are not plain English

(?:[^a-zA-Z0-9 ]|(?<=['’])) # Match anything that is NOT a letter, number, space or single quote | # OR... (?=['’]) # Match any single quote that is followed by a space

Want to kickstart your project?Use the new AI Studio to create your code