我试图在我的字符串中找到一个多行子字符串。
我的代码:
data = `if (res) {
new PNotify({
title: TAPi18n.__('success'),
text: TAPi18n.__('image_uploaded'),
type: 'info',
styling: 'bootstrap3'
});
}
if (err) {
return new PNotify({
title: TAPi18n.__('error'),
text: err,
type: 'error',
styling: 'bootstrap3'
});
}`;
/*not found...*/
match = `new PNotify({
title: TAPi18n.__('error'),
text: err,
type: 'error',
styling: 'bootstrap3'
})`;
console.log(data);
console.log(match);
console.log(data.indexOf(match));
那条线console.log(data.indexOf(match));告诉我-1。我的代码有什么问题?我怎样才能进行多行搜索?
饮歌长啸
翻过高山走不出你
相关分类