gpt4 book ai didi

c# - 如何将 ToTitle 函数更改为字符串扩展?

转载 作者:行者123 更新时间:2023-11-30 13:27:53 24 4
gpt4 key购买 nike

我最近看到一篇帖子,询问是否有办法更改字符串,使其以大写字母开头,后面跟着小写字母。这看起来是最好的解决方案:

public static class StringHelper {     
public static string ToTitleCase(string text) {
return StringHelper.ToTitleCase(text, CultureInfo.InvariantCulture);
}
public static string ToTitleCase(string text, CultureInfo cultureInfo) {
if (string.IsNullOrEmpty(text)) return string.Empty;
TextInfo textInfo = cultureInfo.TextInfo;
return textInfo.ToTitleCase(text.ToLower());
}
}

我想要的是将它们转换成字符串扩展。有人可以建议我该怎么做吗?

最佳答案

在第一个参数前使用this关键字:

public static class StringHelper
{
public static string ToTitleCase(this string text)
{
return StringHelper.ToTitleCase(text, CultureInfo.InvariantCulture);
}

public static string ToTitleCase(this string text, CultureInfo cultureInfo)
{
if (string.IsNullOrEmpty(text)) return string.Empty;
TextInfo textInfo = cultureInfo.TextInfo;
return textInfo.ToTitleCase(text.ToLower());
}
}

参见 How to: Implement and Call a Custom Extension Method (C# Programming Guide)在 MSDN 上。

关于c# - 如何将 ToTitle 函数更改为字符串扩展?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8532085/

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