¡@

Home 

2014/10/16 ¤W¤È 12:03:01

jquery Programming Glossary: dkk

Javascript extracting number from string

http://stackoverflow.com/questions/987382/javascript-extracting-number-from-string

from string I have a bunch of strings extracted from html using jQuery. They look like this var productBeforePrice DKK 399 95 var productCurrentPrice DKK 299 95 I need to extract the number values in order to calculate the price difference... extracted from html using jQuery. They look like this var productBeforePrice DKK 399 95 var productCurrentPrice DKK 299 95 I need to extract the number values in order to calculate the price difference. So I wend up with var productPriceDiff.. I need to extract the number values in order to calculate the price difference. So I wend up with var productPriceDiff DKK 100 or just var productPriceDiff 100 Can anyone help me do this Thanks Jakob javascript jquery string numbers extract ..