gpt4 book ai didi

c# - 从字符串中提取值

转载 作者:行者123 更新时间:2023-11-30 22:18:17 25 4
gpt4 key购买 nike

我有这样一个字符串:

<point srsName="EPSG:4326(WGS84)">
<coordinates>121.7725934555,25.1508396138</coordinates>

我怎样才能只从这个字符串中获取值,例如 121.7725934555,25.1508396138

最佳答案

如果字符串很短并且您不需要从中解析任何其他内容,则可以使用正则表达式:

<coordinates>([^,]+),([^<]+)</coordinates>

两个捕获组将得到 121.772593455525.1508396138

var str = @"<point srsName=""EPSG:4326(WGS84)"">
<coordinates>121.7725934555,25.1508396138</coordinates>";
var m = Regex.Match(str, "<coordinates>([^,]+),([^<]+)</coordinates>");
Console.WriteLine("'{0}' '{1}'", m.Groups[1], m.Groups[2]);

这是一个demo on ideone .

关于c# - 从字符串中提取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16182696/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com