i have a string containing the following:
\"Did It Your Way, 11.95 The History of Scotland, 14.50, Learn Calculus in One Day, 29.95\"
is there any way to get the doubles fro
Use Regular Expressions (regex[p]) module of your favourite language, construct a Matcher for the pattern \d+\.\d+, apply the matcher for the input string and you get the matching substrings as capture groups.