gpt4 book ai didi

c# - 如何将八个字符的字符串拆分为四个变量?

转载 作者:太空宇宙 更新时间:2023-11-03 17:07:52 26 4
gpt4 key购买 nike

我有一个这样的字符串:

var id = "01020304";

有没有一种简单的方法可以将其拆分为四个变量,称为 pr、pa、fo,每个变量都需要包含字符串的两个字符。寻找一个优雅的解决方案(如果存在)。

最佳答案

您可以使用 Substring :

pr = id.Substring(0, 2);
pa = id.Substring(2, 2);
fo = id.Substring(4, 2);
it = id.Substring(6, 2);

关于c# - 如何将八个字符的字符串拆分为四个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8757333/

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