That works! thanks!
joo wrote: > Hello, > > 04.05.2007 â 17:03 Âû ïèñàëè: > > >> Thanks! but that didn't work. Here are some examples.... >> > > >> d1234 >> > > >> e3456b >> > > >> d4n01 >> > > >> basically, I just want to match any string which contains at least one >> number . The number can be anywhere in the string. >> > > /.*\d+.*/ > > .* - is any symbols or nothing > > \d+ - is one or more digits > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
