Posted in Javascript onNovember 12, 2013
var s = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890'; function f(s, width){ return s.replace( new RegExp('[\\s\\S]{1,'+(width || 4)+'}', 'g'), function(m){ return '^' + new Array(m.length).join(' '); }); }console.log(s); console.log(f(s, 4)); console.log(f(s, 8));
给文字加上着重号的JS代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@