Microsoft
Software
Hardware
Network
Question : javascrip string parsing question
Suppose I have strings with below format:
Test 07/2010 (Product 10005)
Test 08/2010 (Product 10006)
In this kind of strings, ony the data field (07 and 2010 and 10005) are changed fields, other parts are fixed. How could I parse this kind of string to get value like:
month: 07
year: 2010
Product: 10005
BTW, for string not staring with "Test", then I do not want to parse it.
Many thanks.
Answer : javascrip string parsing question
if (string.match(/^Test/)) {
var month = string.replace(/^Test\ (\d+)\/\d+\ .*$/, '$1');
var year = string.replace(/^Test\ \d+\/(\d+)\ .*$/, '$1');
var Product = string.replace(/^.*Product
\ (\d+)\)$/, '$1');
}
Random Solutions
HP 1505N cannot change static IP
I just used System Restore to restore the Windows XP OS on my Dell D830 laptop to an earlier point in time; now the network card drivers are disabled & can't be reloaded
What new threading features are now available in Visual Studio 2010?
Adobe Acrobat 7 printer on Windows 7 64bit doesn't install
Current Event between print records...
How to find focused control in Silverlight
HTML site appearing full width in IE, not in other browsers, how to reduce size - center
Windows XP 64 bit fileserver and 32 bit client - any implications?
WSUS clients not reporting
I need assistance using a VirtualPath in ASP.Net