在 C# 中将字符串解析为数组
我有这个字符串:
string resultString="section[]=100§ion[]=200§ion[]=300§ion[]=400";
我只想将数字存储在数组 result[]
中,就像
result[0]=100
result[1]=200
result[3]=300
result[4]=400
任何人都可以帮我解决这个问题一样。
I have this string :
string resultString="section[]=100§ion[]=200§ion[]=300§ion[]=400";
I just want the numbers to be stored in the array result[]
like
result[0]=100
result[1]=200
result[3]=300
result[4]=400
Can anyone help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个怎么样?
How about this?
或
或
OR
OR