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:57] – niklas | regex [2024/02/14 12:20] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Useful regular expressions ====== | ====== Useful regular expressions ====== | ||
+ | |||
+ | 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/EPUB: | ||
+ | |||
+ | 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===== | =====Clean paragraph tags===== |