Regex Examples

Sponsored Links

About Regular Expressions

We have collected examples of regular expressions that make Clibor's formatting functions useful.

If you have any useful regular expression examples, we would appreciate it if you could let us know through the contact form.

New to regular expressions?

Regular expressions can be difficult, but if you are unsure, ask ChatGPT.
Describe a concrete example of what you want to do, and it can suggest the regular expression string for you.

Once you can use regular expressions effectively, they become very convenient.

Delete quotation marks

Remove quotation marks.

Before replacement(^|(?<=\n))[>] *
After replacement 

Convert numbers to comma-separated numbers

Before replacement(\d)(?=(?:\d{3})+(?!\d))
After replacement$1,
Copied title and URL