2006-11-30 Updated: I also write
another high performance string format function which compiles the pattern into function and cache it for reuse.
Last month, I wrote a logging tool for js, and to avoid performance depression, I need a string formatter function.
I found that though many js toolkit or framework provide string format function, such as Atlas, but they r not quite fast. Most r using String.replace(regex, func) to replace the placeholder(such as '{n}' or '$n'), but this function tend to slow, because every match will call the func, and js function calling is very expensive.
On the contrary, native functions r very fast, so to improve performance, we should utilize the native functions as possible as we can. A wonderful example is StringBuilder which use Array.join to concat the string.
So I create my String.format(), it's very fast.
Usage:
var name = 'world';
var result = 'Hello $1!'.format(name);
// result = "Hello world!"
var letters = String.format('$1$2$3$4$5$6$7$8$9$10$11$12$13$14$15$16$17$18$19$20$21$22$23$24$25$26', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z');
// letters = "abcdefghijklmnopqrstuvwxyz"
The later one almost same fast as the former one, no other implementation can have the same performance as I know.
Note:
1. It's depend on String.replace(regex, string), so u can use at most 99 placeholder($1 to $99), but if the script engine is too old, it maybe only support nine ($1 to $9) or not work at all (eg. JScript before 5.5?).
2. literal $ should be escape into $$ (two $).
3. $` and $' will be reomoved, and $& will replaced into some strange things :)
4. There is a magic character which you can't use anyway, currently I choose 0x1f (which means data separator in ascii and unicode).
2006-11-30 Updated:
'$1 1'.format('a') result in 'a 1', if you want to strip the space, u can't write '$11'.format(...) because it will try to match the 11nd parameter, u should write '$011'.format(...) instead.
Source code:
发表于 @ 2006年11月27日 13:57:00|评论(loading...)|编辑