英文:
How to get the value from a string that returns from a Web API?
问题
如何获取refno、status和deldate的值?
英文:
I have a string that returns from a Web API:
example:
string res = "refno=11111&status=0&deldate=2023-07-16"
how to get the value of refno, status and deldate?
答案1
得分: 1
这被称为“查询字符串”。 如果您不想自己解析字符串,可以使用 HttpUtility.ParseQueryString
来获取其中的部分。
链接:https://learn.microsoft.com/en-us/dotnet/api/system.web.httputility.parsequerystring?view=net-7.0
英文:
That's called a "query string". You can use HttpUtility.ParseQueryString
to get the pieces, if you don't want to parse the string yourself.
https://learn.microsoft.com/en-us/dotnet/api/system.web.httputility.parsequerystring?view=net-7.0
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论