Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @t table (addr varchar(32))
insert into @t values ('25 avenue somewhere')
insert into @t values ('42')
insert into @t values ('One Mircosoft Way, Redmond')
insert into @t values ('42foo')
insert into @t values ('null')
select addr,
case when addr like replicate('[0-9]', isnull(nullif(charindex(' ', addr)-1, -1), len(addr))) +'%'
then 'yep'
else 'nope'
end
from @t
select addr,
1 - abs(sign( patindex ('%[^0-9]%', addr) - charindex (' ', addr)))
from @t