In some areas of the editor there's the option to use xpath to perform searches. But xpath is cumbersome and doesn't work in calibre quite completely.
It would be a lot easier and productive to use a regex in the place of xpath.
For example, in the place of
that it doesn't work, one could use as well
that is a lot more readable. Moreover, regex are fully tested and functional in calibre.
It would be a lot easier and productive to use a regex in the place of xpath.
For example, in the place of
Code:
//meta[@name="mainsection"]/@contentCode:
<meta name="mainsection" content="(.*?)"/>






