在 HTML 文件内容中搜索特定单词
我正在为 iPad 开发一个应用程序,它可以加载 HTML 文件,从而以有趣和可爱的方式显示我的内容。现在开始我的噩梦,我尝试在这些文件中搜索随机单词,但不知道如何。我正在考虑使用某种 Objective-C 函数,它允许我将每个 HTML 文件的内容加载到类似字符串的变量中,然后使用变量的方法执行这些单词的搜索(例如在 Java 或 C# 中执行相同的操作) )。
也许这是一项简单的任务,但我被困住了,希望得到一些帮助——比如提示、方法和函数、类似于我想要做的代码片段,甚至是解决这个问题的其他一些可能性,我没有这样做。还没想到。
I'm developing an app for iPad which loads HTML files and so displays my content in a funny and cute manner. Now starts my nightmare, I try to search random words inside these files and don't know how. I am thinking about using some kind of Objective-C function that allows me to load the contents of each HTML file into string-like variable, then perform searches of those words using the variable's methods (take for example doing the same in Java or C#).
Maybe this is an easy task, but I got stuck on it and would appreciate some help -- like hints, methods and functions, code fragments similar to what I am trying to do, or even some other posibilities for solving this problem I didn't think of yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 [NSString stringWithContentsOfFile:... 或 [NSString stringWithContentsOfURL:...?
can you use [NSString stringWithContentsOfFile:... or [NSString stringWithContentsOfURL:...?