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
Thin lines between images in FireFox for Mac
Cisco ASA 5505 ssh default username and password
Text to Column in Microsoft Excel 2007
Can MS Word 2007 allow me to take an image and allow me to trace text boxes over it
Start-up Manager for Windows 7 64-bit
sort pivot table
UPDATE command
How do I improve ASP.NET application performance ?
Recovery disk for System 7 Ultimate
How can I immpove the design on this asp.net form