不同的方法
我来到这里需要一种方法,可以解析引号和非引号的字符串,保留引号和非引号的顺序,然后将其与围绕它们的特定标签一起输出以用于 React 或 React Native 所以我最终没有在这里使用答案,因为我不确定如何让它们满足我的需要,然后改为这样做。
function parseQuotes(str) {
var openQuote = false;
var parsed = [];
var quote = '';
var text = '';
var openQuote = false;
for (var i = 0; i < str.length; i++) {
var item = str[i];
if (item === '"' && !openQuote) {
openQuote = true;
parsed.push({ type: 'text', value: text });
text = '';
}
else if (item === '"' && openQuote) {
openQuote = false;
parsed.push({ type: 'quote', value: quote });
quote = '';
}
else if (openQuote) quote += item;
else text += item;
}
if (openQuote) parsed.push({ type: 'text', value: '"' + quote });
else parsed.push({ type: 'text', value: text });
return parsed;
}
当给出这个时:
'Testing this "shhhh" if it "works!" " hahahah!'
产生:
[
{
"type": "text",
"value": "Testing this "
},
{
"type": "quote",
"value": "shhhh"
},
{
"type": "text",
"value": " if it "
},
{
"type": "quote",
"value": "works!"
},
{
"type": "text",
"value": " "
},
{
"type": "text",
"value": "\" hahahah!"
}
]
这使您可以轻松地将标签包装在它周围,具体取决于它是什么。
https://jsfiddle.net/o6seau4e/4/