Got last problem with a dropbox
What i want to set this dropbox for example to value: "m. Łódź" or "łódzkie wschodnie" or just "łódzki"
Ive created resource "county" with value: "ód" (need it for choosing different counties)
Html looks like this: <option value="6000">m. Łódź</option>
My regex now is:
\w+{{county}}\w+ - i know its wrong
The results is always "Łódź"
\w+{{county}}\w+\s+\w+ gives me łódzki wschodni
Dont know how to obatin "m. Łódź"
I know i need to add regex for spaces etc, ive beed trying to do it for like an hour now :) .+, \s \W etc. cant find exact regex for it :/
I need 1 regex for it on first match :)