0

I'd like to develop an iPhone application that get's it's data from a web pages using regex applied on that web page. I was wondering if that's possible by the SDK.

Thanks

Salem Sayed
  • 170
  • 1
  • 10
  • 1
    Are you sure it's a regex you want? Or do you just want to extract a certain piece of text from a web page? In that case, regex probably isn't the best tool for the job. – Skilldrick Jul 26 '10 at 08:47
  • There is information laid out in tables and fields and i would like to extract them. Regex is the only thing i could think of, can you suggest something else ? – Salem Sayed Jul 26 '10 at 11:26

2 Answers2

0

Yes it is. From my understanding RegexKit is widely used and it can be applied as a part of your project or as a static library.

thevilledev
  • 2,367
  • 1
  • 15
  • 19
0

Do NOT parse HTML using regular expressions. Read this if you don't believe me :)

Community
  • 1
  • 1
the_void
  • 5,512
  • 2
  • 28
  • 34