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.
alert(parseInt('121Anywhere'));
var address = "121Anywhere";
var re = /^(\d+)(.*)$/;
obj = re.exec(address);
obj[0] = "121Anywhere"
obj[1] = "121"
obj[2] = "Anywhere"
var a = obj[1];
var b = obj[2];