[PHP] Re: A quick Regex query

2006-02-16 Thread M. Sokolewicz
hi, have you tried [^0-9][0-9]{4} [A-Za-zÅØ]{2,20} ? - tul phplists wrote: Hi, I am using the following: [0-9]{4} [A-Za-zÅØ]{2,20} to extract data like: 1000 Øslo How can I alter the above to limit to ONLY 4 digits, or in other words exclude: 11000 Beograd Please note that what I am extra

[PHP] Re: A quick Regex query

2006-02-16 Thread Rafael
phplists wrote: I am using the following: [0-9]{4} [A-Za-zÅØ]{2,20} to extract data like: 1000 Øslo How can I alter the above to limit to ONLY 4 digits, or in other words exclude: 11000 Beograd Please note that what I am extracting from is NOT at the begining of a line, so I can't use th