Home  >  Article  >  Web Front-end  >  Add String.Format method to javascript_javascript tips

Add String.Format method to javascript_javascript tips

WBOY
WBOYOriginal
2016-05-16 18:42:131114browse
Copy code The code is as follows:

String.format = function()
{
if ( arguments.length == 0 )
{
return null;
}
var str = arguments[0];
for(var i=1;i{
var re = new RegExp('\{' (i-1) '\}','gm');
str = str.replace(re, arguments[i]);
}
return str;
}

Usage: String.format('Hello. My name is {0} {1}.', firstName, lastName);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn