JavaScript 在字符串中每两个字母后插入空格
为此,请使用replace()和正则表达式。
示例
以下是代码 –
var values = "JavaScriptTutorial";
var result = values.replace(/.{1,2}(?=(.{2})+)/g, '& ');
console.log("The actual result is=");
console.log(values);
console.log("After inserting space at nth position=")
console.log(result);
To run the above program, you need to use the below command −
node fileName.js.
在这里,我的文件名是demo326.js
输出
PS C:\Users\Amit\javascript-code> node demo326.js
The actual result is=
JavaScriptTutorial
After inserting space at nth position=
Ja va Sc ri pt Tu to ri al