我有一個浮點數例如1377.5,我想用普通的JavaScript在這種結構中分裂:正則表達式用於分割具有相應類的跨度浮點數
<span class="digitLarge digit1">1</span>
<span class="digitLarge digit3">3</span>
<span class="digitLarge digit7">7</span>
<span class="digitLarge digit7">7</span>
<span class="digitPoint">.</span>
<span class="digitSmall digit5">5</span>
<span class="digitSmall digit0">0</span>
我喜歡的東西嘗試:
parseFloat(myFloat).toFixed(2).replace(/(.*)/g,'$1');
但在這裏我不能點=大,後點=小前分裂英寸我可以肯定地添加多個RegExes,但這是一種不方便...
什麼是實現這一目標的最佳方法?
謝謝!
乾杯, 湯姆
感謝大家的快速回信,他們都工作,但smarber的回答是我最喜歡的一個。井井有條。 – Tom
@你應該接受它 – smarber