javascript - How to extract numbers from Excel formula that are not part of string constant -
i have complex excel formula in javascript string variable:
=if(f5=1;""; if(f8=1;"Процентная ставка до постройки"; if(f8=2.7;concatenate("Процентная ставка в 1-ый год";g21); if(f8=3;concatenate("Процентная ставка в первые 3 года";g21); concatenate("Процентная ставка в первые 5 лет";g21)))))
i need extract "pure" numbers , replace them ones multiplied 10^10. string should turn into
=if(f5=10000000000;""; if(f8=10000000000;"Процентная ставка до постройки"; if(f8=27000000000;concatenate("Процентная ставка в 1-ый год";g21); if(f8=30000000000;concatenate("Процентная ставка в первые 3 года";g21); concatenate("Процентная ставка в первые 5 лет";g21)))))
i not want touch numbers, inside string consts (1-ый, 5 лет) or cell names (f5, g21).
is there easy way this, regular expression or something?
i don't want brainf*cking parsing...
Comments
Post a Comment