View Single Post
Old 06-12-2016, 02:45 AM   #2
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,735
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Without seeing the HTML code it's hard to suggest a search a proper regex.
Switch to code view mode and locate the number. If it looks like this:

Code:
<p>55</p>
select the regular expression mode (Regex) and use the following expression:

Code:
<p>\d+</p>
and replace with nothing.

For upper case roman numerals use:

Code:
<p>[MDCLXVI]+</p>
Note that you can't use this expression with replace all, because it might also match certain upper case words.

For more examples, see the Sigil Regex thread.
Doitsu is offline   Reply With Quote