I have the following variable which is the selected text of a select box. This is the select box markup.
<select name="SELECT___100E___7">
<option selected="" value="25">Beige/Almond</option>
<option value="21">Blue [Subtract -$1.00]</option>
<option value="27">Chrome [Subtract -$2.00]</option>
<option value="29">Red [Add $1.00]</option>
</select>
Variable test_var hold the selected text...
$('select[name^="SELECT___"]').change(function(){
var test_var = $(this).find("option:selected").text();
});
So what I would like to do is remove all characters except for the amount, also removing the "$". So if "Red [Add $1.00]" is selected I want to have test_var equal to 1.00
Having trouble figuring out the regexp to do this.