gpt4 book ai didi

javascript - 文本文件行与字符串 indexOf() 不匹配

转载 作者:行者123 更新时间:2023-11-30 15:01:54 24 4
gpt4 key购买 nike

我的 Chrome 扩展程序将显示文本文件中的链接是否与当前选项卡 html 中的任何链接匹配。文本文件就像-

https://www.facebook.com/groups/929402513755249/
https%3A%2F%2Ficpc.baylor.edu%2F
https%3A%2F%2Fvjudge.net%2Fcontest%2F187074

我的 content.js 是 -

var xhr = new XMLHttpRequest();
xhr.open('GET', chrome.extension.getURL('file.txt'), true);

xhr.onreadystatechange = function()
{
if(xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200)
{
var allText = xhr.responseText;
//var lines = allText.split('\n');

for (var i = 0; i < document.links.length; i++) {
var link= document.links[i].href;
var lines = allText.split('\n');

for(var line = 0; line < lines.length; line++){
console.log(link); // prints: https://www.facebook.com/groups/929402513755249/#
console.log(lines[line]); //prints: https://www.facebook.com/groups/929402513755249/
var linestr = lines[line];
console.log(link.indexOf(linestr)); // prints: -1
console.log(link.indexOf("https://www.facebook.com/groups/929402513755249/") !== -1); // prints: true
if(link.indexOf(lines[line]) !== -1)
{
console.log("Link Matched!");
}
}
}
}
};
xhr.send();

我不明白为什么link.indexOf(lines[line])当链接为 https://www.facebook.com/groups/929402513755249/# 时为 -1和 lines[line]https://www.facebook.com/groups/929402513755249/ .但是link.indexOf("https://www.facebook.com/groups/929402513755249/")返回 0 作为索引。

最佳答案

如果您使用的是 Windows(或至少在 Windows 上编辑文本文件),则行可能由 \r\n 分隔,而不仅仅是 \n ;如果是这种情况,那么所有行都将以 \r 结尾,而链接不会,因此它永远不会匹配。尝试使用 allText.split(/\r?\n/) 而不是 split('\n')

关于javascript - 文本文件行与字符串 indexOf() 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46413120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com