gpt4 book ai didi

c# - 您遇到过的最有用的字符串助手是什么?

转载 作者:太空狗 更新时间:2023-10-29 23:26:37 25 4
gpt4 key购买 nike

<分区>

您必须分享哪些有用的字符串操作助手?

我曾经写过一个 String.Format() 的替代品,我发现它使用起来更简洁:

public static class StringHelpers
{
public static string Args(this string str, object arg0)
{
return String.Format(str, arg0);
}

public static string Args(this string str, object arg0, object arg1)
{
return String.Format(str, arg0, arg1);
}

public static string Args(this string str, object arg0, object arg1, object arg2)
{
return String.Format(str, arg0, arg1, arg2);
}

public static string Args(this string str, params object[] args)
{
return String.Format(str, args);
}
}

示例:

// instead of String.Format("Hello {0}", name) use:
"Hello {0}".Args(name)

对于 C# 中的字符串,您还有哪些其他有用的帮助程序?

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