可以在JavaScript中的每个单词后用分隔符分割字符串

要在每个单词后用分隔符分割字符串,语法如下:

var anyVariableName=yourVariableName.split('parameter').filter(value=>value)

假设,以下是带有分隔符的字符串-

var sentence="-My-Name-is-John-Smith-I-live-in-US";

现在,使用分隔符分割字符串,如下面的代码所示。

示例

var sentence="-My-Name-is-John-Smith-I-live-in-US";
console.log("The value="+sentence);
var result=sentence.split('-').filter(value=>value)
console.log("After split()=");
console.log(result);

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo63.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\JavaScript-code> node demo63.js
The value=-My-Name-is-John-Smith-I-live-in-US
After split()=
[
   'My', 'Name',
   'is', 'John',
   'Smith', 'I',
   'live', 'in',
   'US'
]
猜你喜欢