|
Posted - 11/26/2005 : 12:16:23
|
Good morning, I've the following part of an html file,
//////////////////////////////////////////////////////////////////////// </font></b></td> </tr> <tr> <td bgcolor=white class=s><div style=padding:10px;>Computer science, Universit, Economy, Finance</div></td> </tr> ////////////////////////////////////////////////////////////////////////
I would want to extract the words "Computer science, Universit, Economy, Finance" using the following regular expression:
style=padding:10px;>(?<Traduzione>(?:\w|\s|\.|\d|\:|\"|\,|\?|\'|\-)*)</div></td>
the problem is that it doesn't recognize the newline character after Universit, so the result is no match but I can't understand why, can you help me to solve the problem???
Many thanks,
Antonio D'Ottavio www.etantonio.it/en
|
Why not ?!? |
Country: Italy ~
Posts: 26 ~
Member Since: 10/21/2005 ~
Last Visit: 11/17/2008
|
Alert Moderator
|
|
|
|
Posted - 11/26/2005 : 12:30:13
|
Try enabling the MultiLine option on the RegExp instance.
Bye,
Dimitri
|
Country: Bahamas ~
Posts: 2 ~
Member Since: 11/26/2005 ~
Last Visit: 11/26/2005
|
Alert Moderator
|
|
|
|
|