Javascript printf/string.format - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T13:34:07Zhttp://stackoverflow.com/feeds/question/610406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/610406/javascript-printf-string-format4Javascript printf/string.formatChris S2009-03-04T12:53:02Z2009-09-27T08:36:00Z
<p>I'm looking for a good Javascript equivalent of the C/PHP <strong>printf()</strong> or for C#/Java programmers, <strong>String.Format()</strong> (IFormatProvider for .NET).</p>
<p>My basic requirement is thousand seperator format for numbers for now, but something that handles lots of combinations (including dates) would be good.</p>
<p>I realise Microsoft's AJAX library provides a version of String.Format() but we don't want the entire overhead of that framework.</p>
http://stackoverflow.com/questions/610406/javascript-printf-string-format/610415#6104155Answer by Gumbo for Javascript printf/string.formatGumbo2009-03-04T12:55:22Z2009-03-04T12:55:22Z<p>Try <a href="http://code.google.com/p/sprintf/" rel="nofollow">sprintf() for JavaScript</a>.</p>
http://stackoverflow.com/questions/610406/javascript-printf-string-format/610418#6104181Answer by Pooria for Javascript printf/string.formatPooria2009-03-04T12:55:53Z2009-03-04T12:55:53Z<p>Hi there,</p>
<p>There are "sprintf" for javascript which you can find it from here:
<a href="http://www.webtoolkit.info/javascript-sprintf.html" rel="nofollow">http://www.webtoolkit.info/javascript-sprintf.html</a></p>
<p>Regards,
Pooria.</p>
http://stackoverflow.com/questions/610406/javascript-printf-string-format/610452#6104522Answer by Chris S for Javascript printf/string.formatChris S2009-03-04T13:04:30Z2009-07-20T22:26:19Z<p>I'll add my own discoveries which I've found since I asked:</p>
<ul>
<li><a href="http://kevin.vanzonneveld.net/techblog/article/javascript%5Fequivalent%5Ffor%5Fphps%5Fnumber%5Fformat/" rel="nofollow">number_format (for thousand seperator/currency formatting)</a></li>
<li><a href="http://kevin.vanzonneveld.net/techblog/article/javascript%5Fequivalent%5Ffor%5Fphps%5Fsprintf/" rel="nofollow">sprintf (same author as above)</a></li>
</ul>
<p>Sadly it seems sprintf doesn't handle thousand seperator formatting like .NET's string format.</p>
http://stackoverflow.com/questions/610406/javascript-printf-string-format/610480#6104801Answer by 17 of 26 for Javascript printf/string.format17 of 262009-03-04T13:10:59Z2009-03-04T13:10:59Z<p>If you are looking to handle the thousands separator, you should really use toLocaleString() from the Javascript <a href="http://www.hunlock.com/blogs/The%5FComplete%5FJavascript%5FNumber%5FReference" rel="nofollow">Number</a> class since it will format the string for the user's region.</p>
<p>The Javascript <a href="http://www.hunlock.com/blogs/Javascript%5FDates-The%5FComplete%5FReference" rel="nofollow">Date</a> class can format localized dates and times.</p>
http://stackoverflow.com/questions/610406/javascript-printf-string-format/1483111#14831111Answer by Sven N for Javascript printf/string.formatSven N2009-09-27T08:36:00Z2009-09-27T08:36:00Z<p>I use a small library called <a href="http://www.masterdata.se/r/string%5Fformat%5Ffor%5Fjavascript/" rel="nofollow">String.format for JavaScript</a> which supports most of the format string capabilities (including format of numbers and dates), and uses the .NET syntax. The script itself is smaller than 4 kB, so it doesn't create much of overhead.</p>