<div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-4imcyisx5DE/XK3-KlkScjI/AAAAAAAAGI8/kJwKsUhY9RgjNg2D_fHoNDmhQl2vvt6hQCLcBGAs/s1600/regex1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="Regex Merubah Angka Menjadi Format Mata Uang" border="0" data-original-height="900" data-original-width="1600" height="360" src="https://4.bp.blogspot.com/-4imcyisx5DE/XK3-KlkScjI/AAAAAAAAGI8/kJwKsUhY9RgjNg2D_fHoNDmhQl2vvt6hQCLcBGAs/s640/regex1.jpg" title="Regex Merubah Angka Menjadi Format Mata Uang" width="640" /></a></div> <pre><code class="language-php"> function TambahKoma(govlok) { govlok += ''; w = govlok.split('.'); w1 = w[0]; w2 = w.length > 1 ? '.' + w[1] : ''; var rgw = /(\d+)(\d{3})/; while (rgw.test(w1)) { w1 = w1.replace(rgw, '$1' + ',' + '$2'); } return w1 + w2; } </code></pre>
Posting Komentar
Posting Komentar