Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
regex [2021/03/19 08:57] niklasregex [2024/02/14 12:20] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== 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<sup>''[1]''</sup> style footnotes to without<sup>''1''</sup> for print, and vice versa ((Concretely, you would look for something like ''class="noteref">(.*?)</a></sup>'' and replace this with something like ''>[\1]</a></sup>'')). For example, from the final Wellred InDesign book to [[publishing:digital:ebook|EPUB export]], we can now often achieve a 100% finished ebook in less than an hour thanks to a series of regular expressions executed at once.
 +
 +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
 +
 +''<p class="Headings_Introduction-Title">Chapter title</p>''
 +
 +we would like
 +
 +''<h1>Chapter title</h1>''
 +
 +Using regex, for the initial sequence (the "find" part of the find and replace) this becomes :
 +
 +''<p class="Headings_Introduction-Title">(.*?)</p>''
 +
 +''(.*?)'' is a variable that captures everything in between the paragraph tag with class ''"Headings_Introduction-Title"''.
 +
 +To convert this to a proper <h1> tag we would replace this with:
 +
 +''<h1>\1</h1>''
 +
 +(with ''\1'' being the "capture group", the "replace" bit)
 +
 +https://regex101.com/ is a useful resource to try out certain patterns.
 +
 +MV's plain text file {{ ::regex-mv.pdf |}} used for producing ebooks may be useful to get a better idea.
 +
 +Below are some further examples.
 +
  
 =====Clean paragraph tags===== =====Clean paragraph tags=====