View Single Post
Old 02-05-2007, 02:39 PM   #2
DTM
Intentionally Left Blank
DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.
 
DTM's Avatar
 
Posts: 172
Karma: 300106
Join Date: Feb 2006
Location: Royal Oak, MI, USA
Device: Nook STR
The following seems to work. I tried it on their news page with success.

Filter:
(.*)newscientist\.com/article/dn(.{5,5}).*

Rewrite as:
$1newscientist.com/article.ns?id=dn$2&print=true


The expression (.{5,5}) captures any string of exactly five characters. (Literally, any string of length between 5 and 5.)
DTM is offline