有没有办法在f#中获取URL并进一步提供其参数值F#任何人都可以帮助我。我已经尝试了很多,但没有找到解决方案
http://www.example.com/blog?blogid=23
想要获得http://www.example.com/blog?blogid=23
然后23
答案 0 :(得分:1)
let getBlogId uriString =
let uri = System.Uri(uriString)
let kvps = HttpUtility.ParseQueryString uri.Query
let idStr = kvps.["blogid"]
int idStr
答案 1 :(得分:0)
let uri = new System.Uri("http://www.example.com/blog?blogid=23")
let blogId = uri.Query.Split('=').[1]