gpt4 book ai didi

c# - 在 String 数组中插入一个元素

转载 作者:太空狗 更新时间:2023-10-29 19:49:41 25 4
gpt4 key购买 nike

我有一个包含 n 个元素的字符串。

我想在第一个位置插入一个自动递增的数字。

例如 数据

66,45,34,23,39,83
64,46,332,73,39,33
54,76,32,23,96,42

我正在使用 split char ',' 将字符串拆分为数组

我想要第一个位置带有递增数字的结果数组

1,66,45,34,23,39,83
2,64,46,332,73,39,33
3,54,76,32,23,96,42

请建议我该怎么做。

谢谢

最佳答案

你不能使用数组,你需要使用 List<string>相反。

例如:

List<string> words = new string[] { "Hello", "world" }.ToList();
words.Insert(0, "Well");

关于c# - 在 String 数组中插入一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6996229/

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