gpt4 book ai didi

c# - 是否可以在 C# 的 String.Format 中将索引号替换为字符串?

转载 作者:行者123 更新时间:2023-11-30 14:00:39 25 4
gpt4 key购买 nike

我可以像这样使用 string.Format 吗?

1 ) 将数字替换为字符串

string sample = "Hello, {name}";

//I want to put a name string into {name}, is it possible?

**2 ) 是否可以将字符串一个一个地添加到字符串模板中

string sample = "My name is {0}, I am living in {1} ...";

// put {0} value
// and put {1} value separately

ex)
sample[0] = "MIKE";
sample[1] = "Los Anageles";

最佳答案

  1. 没有

  2. 是;只需构建一个数组,然后将该数组传递给 String.Format(this 是您将使用的特定重载):

    object[] values = new object[2];
    values[0] = ...;
    values[1] = ...;
    String.Format(someString, values);

关于c# - 是否可以在 C# 的 String.Format 中将索引号替换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10232714/

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