gpt4 book ai didi

iphone - 比较网络上的字符串

转载 作者:行者123 更新时间:2023-12-03 20:46:58 25 4
gpt4 key购买 nike

嘿大家,我正在尝试读取网络上的一个文件,上面写着“这是一个测试”,我想比较它......所以这就是我得到的:

NSError *error;
NSURL *theURL = [NSURL URLWithString:@"http://mysite.com/test.asp"];
NSString *test = [NSString stringWithContentsOfURL:theURL encoding:NSASCIIStringEncoding error:&error];

NSLog(@"%@",test); //prints the results.. .does work


if(test == "this is a test"){
NSLog(@"File read");
} else {
NSLog(@"Bad file");
}

我在这里做错了什么?我总是收到“错误文件”,但我知道它正在拉入文本。谢谢大家

达米恩

最佳答案

您还需要检查 nil 并使用 isEqualToString 函数进行比较。

if(test != nil){

if([test isEqualToString:@"this is a test"]) {
// equal
}
else{
// not equal
}
}

else{

NSLog(@"Bad file");

}

关于iphone - 比较网络上的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5201159/

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