Belirli bir bilgi, regex ayıklamak php preg_match desen

0 Cevap php

Ben bir html belge belirli bir kimliği ayıklamak gerekiyor ama sorun id "kullanılmamalıdır" etmemelidir.

Here is the html content http://pastebin.com/wF2dx8JZ

As you may see there are different html blocks . Some of them contain the "Used" word so I need to extract only the first id which is not used. Basically I can write a simple pattern like : $pattern = "/javascript:tw(.*))/"; preg_match_all($pattern, $content, $matches); $id = $matches[1][0];

Ancak bu durumda ben de bu yüzden denklemden onları dışlamak için nasıl bilmiyorum kullanılan "kimlikleri" alıyorum. Herhangi bir fikri son derece mutluluk duyacağız.

0 Cevap