View Single Post
Old 03-06-2011, 04:04 PM   #13
bob_tm
Enthusiast
bob_tm began at the beginning.
 
Posts: 32
Karma: 10
Join Date: Jan 2011
Device: Kindle 3 WiFi, Onyx M92
Quote:
Originally Posted by pietro99 View Post
Thanks for your help. The actual text from the conversion window is:

being purposely obtuse?” she said.<br>
<i>71</i><br>
9781416585855TEXT.indd 71<br>
25/11/09 3:31:58 PM<br>
<hr>
<A name=79></a>“Obtuse is purposeful by defi nition,” Bernie said.<br>

...

For the 2nd line:

9781416585855TEXT.indd 57<br>

I come up with:

\d+TEXT\.indd \s\ d+<br>

For the 3rd line:

25/11/09 3:31:56 PM<br>

I come up with:

25/11/09\s\d+\:d+\:d+ PM<br>

(the date stays the same each time)

Neither of these will work for me.
My mistake in the original post (som errors there - sorry).

9781416585855TEXT.indd 57<br>

You suggested:

\d+TEXT\.indd \s\ d+<br>

I suggest:
\d+TEXT\.indd\s+\d+<br>


For:

25/11/09 3:31:56 PM<br>

You suggested:

25/11/09\s\d+\:d+\:d+ PM<br>

I suggest (note the misplaced "\" above that originated from my typos):

25/11/09\s\d+:\d+:\d+\s+PM<br>

Sorry about this. Hopefully the regexps make more sense as written here (though they could be wrong too). All you should need here are normal text, \s and \d for white space and digit and the '+'-suffix to these in order to denote "one or more occurrences".

bob_tm
bob_tm is offline   Reply With Quote