2015-07-23 18 views

risposta

2

solution of the above problem

var func = '\frac{x}{\frac{y}{y}}'; 
func = func.replace(/}{/g, ")/(").replace(/\frac{/g, "(").replace(/}/g, ")") 
console.log(func); 
  1. innput = \ frac {x} {\ frac {y} {y}}
  2. output = (x)/((y)/(y))
+0

Grazie! La migliore soluzione fino ad ora! – VizardCrawler