View Single Post
Old 04-08-2012, 04:48 AM   #4
wallcraft
reader
wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.wallcraft ought to be getting tired of karma fortunes by now.
 
wallcraft's Avatar
 
Posts: 6,977
Karma: 5183568
Join Date: Mar 2006
Location: Mississippi, USA
Device: Kindle 3, Kobo Glo HD
Quote:
Originally Posted by p3aul View Post
here is wan example of the first chapter:
I: In which Two Men go forth and One Arrives

What could be more obvious than a Roman Numeral?
This is the latest thing I've tried:
//*[re:test(., '^[I-XXIII]+:$')]
The "$" matches the end of a line, which isn't right here. Try
Code:
//*[re:test(., '^[IXV]+:')]
There is no need to repeat elements in the "[ ]" list and "I-X" means all characters from I to X. If you want a "-" put it at the end of the list.
wallcraft is offline   Reply With Quote