Jump to content

Regexpression Matching Whole String


Manixat

Recommended Posts

Ok so I'm getting pretty annoyed after 30 minutes of non-success, I have an array and I'm trying to match every element individually but it matches the whole string to the very end ???

 

$cities = array('Видин','Монтана','Враца','Плевен','Велико Търново','Русе','Разград','Силистра','Добрич','София област','Ловеч','Габрово','Търговище','Шумен','Варна','София','Перник','Кюстендил','Пазарджик','Пловдив','Стара Загора','Сливен','Ямбол','Бургас','Благоевград','Хасково','Кърджали','Смолян');

 

regexp: ,'(.*)'

 

supposed to find - ,'Монтана' ,'Враца' etc. but instead returns the whole array ???

 

I also tried ,('.*') but the result was the same

 

and ,'(\w*)' doesn't return anything

Edited by Manixat
Link to comment
Share on other sites

.* is a greedy matchall, so it will match everything it can and then start working its way backwards, only giving up what it has to, to meet the rest of the pattern requirements.  What you want is a lazy matchall: '(.*?)'  This will only match up to first time it needs to match to fulfill its requirement.

 

Alternatively, you can use a negative character class: '([^']*)'

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.