gpt4 book ai didi

c# - 从字符串中读取坐标

转载 作者:太空宇宙 更新时间:2023-11-03 20:48:19 25 4
gpt4 key购买 nike

我想从如下所示的字符串中读取坐标:

string coordinate = "20, 10   10, 20";

int x1 = 20;
int y1 = 10;
int x2 = 10;
int y2 = 20;

我想将每个数字存储在一个单独的整数变量中。

实际有多少数字应该无关紧要。所以 "20,10 10,20" 可以是 任何东西... ("x1,y1 x2,y2")

最佳答案

你可以使用split函数:

string coordinate = "20, 10   10, 20";
var splitted = coordinate.Split(new[] { ' ', ',' }, StringSplitOptions.RemoveEmptyEntries)
.ToList();
var x1 = splitted[0];
var y1 = splitted[1];
var x2 = splitted[2];
var y2 = splitted[3];

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

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