2013-11-25 62 views
0

我有這樣的NSString:如何在iOS中的Objective-C中的兩個字符串之間獲得NSString?

<title>My Friends Website</title> 

我如何拔出My Friends Website到它自己的NSString iOS上使用Objective-C?

+0

請參見下面的搜索結果:http://stackoverflow.com/search?q=%5Bios%5D+extract+string+between – rmaddy

+1

這應有助於:HTTP:// stackoverflow.com/questions/277055/remove-html-tags-from-an-nsstring-on-the-iphone – Macondo2Seattle

+0

我會說這個問題是@BlackRider剛纔鏈接的副本。 – prototypical

回答

2

嘗試:

NSString *myString = [[@"<title>My Friends Website</title>" stringByReplacingOccurrencesOfString:@"<title>" withString:@""] stringByReplacingOccurrencesOfString:@"</title>" withString:@""]]; 
相關問題