Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
var s = "17.39 points set to 10.33"; document.write(parseFloat(s)); /* run: 17.39 */
var s = "17.99 points"; document.write(parseFloat(s)); /* run: 17.99 */
var s = "200 17.99 points"; document.write(parseFloat(s)); /* run: 200 */
var s = "17.99 3.14 points"; document.write(parseFloat(s)); /* run: 17.99 */
var s = "3.14"; document.write(parseFloat(s)); /* run: 3.14 */
var s = "3000"; document.write(parseFloat(s)); /* run: 30000 */