Javascript printf/string.format - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:34:07Z http://stackoverflow.com/feeds/question/610406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/610406/javascript-printf-string-format 4 Javascript printf/string.format Chris S 2009-03-04T12:53:02Z 2009-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#610415 5 Answer by Gumbo for Javascript printf/string.format Gumbo 2009-03-04T12:55:22Z 2009-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#610418 1 Answer by Pooria for Javascript printf/string.format Pooria 2009-03-04T12:55:53Z 2009-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#610452 2 Answer by Chris S for Javascript printf/string.format Chris S 2009-03-04T13:04:30Z 2009-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#610480 1 Answer by 17 of 26 for Javascript printf/string.format 17 of 26 2009-03-04T13:10:59Z 2009-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#1483111 1 Answer by Sven N for Javascript printf/string.format Sven N 2009-09-27T08:36:00Z 2009-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>