having problems with regex in javascript.
need to parse out all variables from a String which include a letter.
As far i used /[0-9\][A-Za-z.]*/g gives me wrong results.
Sample:
windo.w029384-(2*I00983.size)+23.8/6+ss-t
need to parse out windo.w029384, I00983.size, ss, t
Thanks for help.