J Jesus Suarez Nov 22, 2006 #1 hello people i need regular expressions for: telephone accounts bank urls thanks
G Guest Nov 22, 2006 #2 Jesus Suarez said: i need regular expressions for: telephone Click to expand... US Telephone number: ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4} accounts bank Click to expand... Umm, which bank? I suspect there's no generic format urls Click to expand... http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?
Jesus Suarez said: i need regular expressions for: telephone Click to expand... US Telephone number: ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4} accounts bank Click to expand... Umm, which bank? I suspect there's no generic format urls Click to expand... http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?
J Jesus Suarez Nov 22, 2006 #3 ok, thanks the bank? validation DC Leon Mayne said: Jesus Suarez said: i need regular expressions for: telephone Click to expand... US Telephone number: ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4} accounts bank Click to expand... Umm, which bank? I suspect there's no generic format urls Click to expand... http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)? Click to expand...
ok, thanks the bank? validation DC Leon Mayne said: Jesus Suarez said: i need regular expressions for: telephone Click to expand... US Telephone number: ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4} accounts bank Click to expand... Umm, which bank? I suspect there's no generic format urls Click to expand... http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)? Click to expand...
H Hans Kesting Nov 22, 2006 #4 hello people i need regular expressions for: telephone accounts bank urls thanks Click to expand... A dutch bankaccount consists of 9 digits (which can be checked easily by regex: \d{9}), BUT only certain combinations are valid. That validity can NOT be checked with a regexp. Hans Kesting
hello people i need regular expressions for: telephone accounts bank urls thanks Click to expand... A dutch bankaccount consists of 9 digits (which can be checked easily by regex: \d{9}), BUT only certain combinations are valid. That validity can NOT be checked with a regexp. Hans Kesting