开发者

itunes app store link checker

开发者 https://www.devze.com 2022-12-19 01:54 出处:网络
I am looking for a regex (or other method) that can check and parse app store links. I have an app that can take record these links but I want to check that the fo开发者_如何学运维rmat is correct befo

I am looking for a regex (or other method) that can check and parse app store links. I have an app that can take record these links but I want to check that the fo开发者_如何学运维rmat is correct before I accept it.

e.g.

http://itunes.apple.com/gb/app/instapaper/id288545208?mt=8

http://itunes.apple.com/us/app/iq-test-sale/id297141027?mt=8&uo=6

http://itunes.apple.com/gb/app/speedtest-net-speed-test/id300704847?mt=8

Has anyone done anything like this?


Instead of using a regular expression you can also use NSURL to parse these. Simply create an NSURL and then you can use it's functions to access all the different bits like the hostname, path and query parameters.

With some simple logic you can then recognize all the different possible appstore links.

0

精彩评论

暂无评论...
验证码 换一张
取 消