<bdo id='eqOhZ'></bdo><ul id='eqOhZ'></ul>
    <legend id='eqOhZ'><style id='eqOhZ'><dir id='eqOhZ'><q id='eqOhZ'></q></dir></style></legend>

    <small id='eqOhZ'></small><noframes id='eqOhZ'>

    <tfoot id='eqOhZ'></tfoot>

      <i id='eqOhZ'><tr id='eqOhZ'><dt id='eqOhZ'><q id='eqOhZ'><span id='eqOhZ'><b id='eqOhZ'><form id='eqOhZ'><ins id='eqOhZ'></ins><ul id='eqOhZ'></ul><sub id='eqOhZ'></sub></form><legend id='eqOhZ'></legend><bdo id='eqOhZ'><pre id='eqOhZ'><center id='eqOhZ'></center></pre></bdo></b><th id='eqOhZ'></th></span></q></dt></tr></i><div id='eqOhZ'><tfoot id='eqOhZ'></tfoot><dl id='eqOhZ'><fieldset id='eqOhZ'></fieldset></dl></div>

      如何将句子中单词的每个首字母大写?

      How can I capitalize each first letter of a word in a sentence?(如何将句子中单词的每个首字母大写?)
      <i id='sx9Kq'><tr id='sx9Kq'><dt id='sx9Kq'><q id='sx9Kq'><span id='sx9Kq'><b id='sx9Kq'><form id='sx9Kq'><ins id='sx9Kq'></ins><ul id='sx9Kq'></ul><sub id='sx9Kq'></sub></form><legend id='sx9Kq'></legend><bdo id='sx9Kq'><pre id='sx9Kq'><center id='sx9Kq'></center></pre></bdo></b><th id='sx9Kq'></th></span></q></dt></tr></i><div id='sx9Kq'><tfoot id='sx9Kq'></tfoot><dl id='sx9Kq'><fieldset id='sx9Kq'></fieldset></dl></div>

        <bdo id='sx9Kq'></bdo><ul id='sx9Kq'></ul>
        <tfoot id='sx9Kq'></tfoot>

        <small id='sx9Kq'></small><noframes id='sx9Kq'>

          1. <legend id='sx9Kq'><style id='sx9Kq'><dir id='sx9Kq'><q id='sx9Kq'></q></dir></style></legend>
              <tbody id='sx9Kq'></tbody>
              1. 本文介绍了如何将句子中单词的每个首字母大写?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                可能重复:
                如何将每个句子的首字母大写?

                public static string CapitalizeEachWord(this string sentence)
                {
                    string[] words = sentence.Split();
                    foreach (string word in words)
                    {
                        word[0] = ((string)word[0]).ToUpper();                
                    }
                }
                

                我正在尝试为我正在尝试为自己为未来项目创建的帮助类创建扩展方法.

                I'm trying to create a extension method for a helper class I'm trying to create for myself for future projects.

                这一项应该适当地大写每个单词.意思是,每个单词的第一个字母都应该大写.我无法让它工作.

                This one particular is supposed to capitalize each word appropriately. Meaning, the first letter of every word should be capitalized. I'm having trouble getting this to work.

                它说我无法将 char 转换为字符串,但我记得在某些时候能够做到这一点.也许我忘记了一个关键部分.

                It says I cannot convert a char to a string, but I remember being able to do that at some point. Maybe I'm forgetting a crucial part.

                感谢您的建议.

                推荐答案

                可能使用TextInfo类中的ToTitleCase方法

                如何使用 Visual C# 将字符串转换为小写、大写或标题(正确)大小写

                CultureInfo cultureInfo   = Thread.CurrentThread.CurrentCulture;
                TextInfo textInfo = cultureInfo.TextInfo;
                
                Console.WriteLine(textInfo.ToTitleCase(title));
                

                这篇关于如何将句子中单词的每个首字母大写?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)

                      <bdo id='1aufI'></bdo><ul id='1aufI'></ul>

                          <tfoot id='1aufI'></tfoot>
                          <i id='1aufI'><tr id='1aufI'><dt id='1aufI'><q id='1aufI'><span id='1aufI'><b id='1aufI'><form id='1aufI'><ins id='1aufI'></ins><ul id='1aufI'></ul><sub id='1aufI'></sub></form><legend id='1aufI'></legend><bdo id='1aufI'><pre id='1aufI'><center id='1aufI'></center></pre></bdo></b><th id='1aufI'></th></span></q></dt></tr></i><div id='1aufI'><tfoot id='1aufI'></tfoot><dl id='1aufI'><fieldset id='1aufI'></fieldset></dl></div>
                          <legend id='1aufI'><style id='1aufI'><dir id='1aufI'><q id='1aufI'></q></dir></style></legend>
                            <tbody id='1aufI'></tbody>
                        1. <small id='1aufI'></small><noframes id='1aufI'>