在 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' ]
广告