About Regular Expressions
We have collected examples of regular expressions that make Clibor's formatting functions useful.
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.
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, |

