我有一个文本,我需要将单词从index1提取到index2。"This is a text from where a part should be extracted"
index1 = 3,index2 = 7result = "text from where a "
考虑到单词可能被多个空格分隔,如何使用regExp做到这一点?
最佳答案
我会给你一个提示。
"This is a text from where a part should be extracted"
.match(/[^\s]+\s*/g)
.slice(3, 7)
.join('');
您应该能够轻松地将其转换为通用函数。
干杯