Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex [2021/03/19 08:55] – niklas | regex [2024/02/14 12:20] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Useful regular expressions ====== | ||
- | ==Clean paragraph tags== | + | A relatively advanced way to potentially semi-automate a few processes is the use of regular expressions. These are basically an advanced form of “find and replace” which can be very powerful. When used properly, they can clean up certain code and properly format things like footnotes in record time, or convert square bracket< |
+ | |||
+ | The easiest way to understand the concept is to use a simple one. A fairly typical export from InDesign will have Headers as a paragraph tag, which isn't much use for HTML/ | ||
+ | |||
+ | Rather than | ||
+ | |||
+ | ''< | ||
+ | |||
+ | we would like | ||
+ | |||
+ | ''< | ||
+ | |||
+ | Using regex, for the initial sequence (the " | ||
+ | |||
+ | ''< | ||
+ | |||
+ | '' | ||
+ | |||
+ | To convert this to a proper <h1> tag we would replace this with: | ||
+ | |||
+ | ''< | ||
+ | |||
+ | (with '' | ||
+ | |||
+ | https:// | ||
+ | |||
+ | MV's plain text file {{ :: | ||
+ | |||
+ | Below are some further examples. | ||
+ | |||
+ | |||
+ | =====Clean paragraph tags===== | ||
Replace | Replace | ||
< | < | ||
with | with | ||
< | < | ||
- | ==remove span tags:== | + | =====remove span tags:===== |
Replace | Replace | ||
< | < | ||
with nothing | with nothing | ||
- | ==Remove empty paragraph tags:== | + | =====Remove empty paragraph tags:===== |
Replace | Replace | ||
< | < | ||
Line 19: | Line 51: | ||
with nothing | with nothing | ||
- | ==Bold paragraphs to h4:== | + | =====Bold paragraphs to h4:===== |
Replace | Replace | ||
< | < | ||
Line 28: | Line 60: | ||
< | < | ||
</ | </ | ||
- | ==Handling footnotes: | + | =====Handling footnotes:===== |
< | < | ||
<a (href="# | <a (href="# | ||
Line 49: | Line 81: | ||
\1< | \1< | ||
</ | </ | ||
- | ==Finding and replacing double quotation: | + | =====Finding and replacing double quotation:===== |
< | < | ||
(?< | (?< | ||
Line 60: | Line 92: | ||
< | < | ||
- | ==Removing line breaks in code:== | + | =====Removing line breaks in code:===== |
This is useful if above isn't working because of line breaks. | This is useful if above isn't working because of line breaks. | ||
Replace | Replace |