Filter number using regex

Animo

Новичок
Регистрация
22.10.2012
Сообщения
2
Благодарностей
0
Баллы
0
Hello guys, I'm really new to this..

Can explain how to filter this url?

Код:
<h3 class="entrytitle" id="post-[B]204224[/B]"> <a href="http://www.iwant.this/url/" rel="bookmark">
i can use this regex

Код:
(?<=<h3\ class="entrytitle"\ id="post-204224">\ <a\ href=").*(?="\ rel="bookmark">)
to get the url but post id numbers id="post-204224" always change, how will i get the url every time?

Tq guys.. appreciate the help.
 

drvosjeca

Client
Регистрация
26.10.2011
Сообщения
512
Благодарностей
455
Баллы
63
here you go:

(?<=<h3\ class="entrytitle"\ id="post-.*">\ <a\ href=").*?(?=")
 

muchink

Client
Регистрация
28.07.2012
Сообщения
193
Благодарностей
6
Баллы
18
In regex you can choose "text starts with" as : <h3 class="entrytitle" id="
and "text ends with": "> <a href="http://www.iwant.this/url/" rel="bookmark">

GL
 

Animo

Новичок
Регистрация
22.10.2012
Сообщения
2
Благодарностей
0
Баллы
0
Thank you both for solving my problem.. It's fixed now.. once again.. thank you.
 

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)