View Single Post
Old 04-11-2012, 05:56 PM   #8
Timur
Connoisseur
Timur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five wordsTimur can name that ebook in five words
 
Posts: 54
Karma: 37363
Join Date: Aug 2011
Location: Istanbul
Device: EBW1150, Nook STR
Adding newlines in the character class will prohibit multiline matches in this case:

Code:
>([^“\r\n]*)”
If you prefer it that way, you can augment the pattern with a look-behind assertion to get rid of the ">" character from the matched string:

Code:
(?<=>)([^“\r\n]*)”
Timur is offline   Reply With Quote