View Single Post
Old 07-06-2015, 10:12 PM   #6
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,191
Karma: 8888888
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by Kaetrin View Post
Thank you. I have put the editor on Regex Mode with All Text Files. However, when I do a search, I get a message that there is no text which matches my search criteria.

I've copied out a couple of lines from what I see in the editor:
<span class="bold">The next morning,</span>I keep myself busy at the university. Exams are<br class="calibre1"/>
<span class="calibre_1">14</span> upon us, which means I have to lead two exam-review sessions,<br class="calibre1"/>
<span class="calibre_1">15

Does the above change the search criteria?
Yes it does.
I started with this
Spoiler:
Code:
<body>

<span class="bold">The next morning,</span>I keep myself busy at the university. Exams are<br class="calibre1"/>
<span class="calibre_1">14</span> upon us, which means I have to lead two exam-review sessions,<br class="calibre1"/>
<span class="calibre_1">15
</body>
used this regex
find
Code:
<br class="calibre1"/>
<span class="calibre_1">\d+
left the replace blank and got this
Code:
<span class="bold">The next morning,</span>I keep myself busy at the university. Exams are</span> upon us, which means I have to lead two exam-review sessions,
</body>
Then did a Fix html and got this:
Code:
<span class="bold">The next morning,</span>I keep myself busy at the university. Exams are upon us, which means I have to lead two exam-review sessions,


</body></html>


bernie
gbm is offline   Reply With Quote