我正在使用 Visual Studio 11.0 和 .Net Web 编程我想通过从 RadioButtonList1 中选择将从 TextBox1 输入的字符串转换为 TitleCase、sentenceCase、UpperCase 和小写,并在 Label1.Text 中显示结果。但我不想要我的话在要转换的引号内。示例“ASP.NET”、“Ph.D”和“xyz”。我已经完成了标题大小写、大写和小写的编码,但我希望无论何时出现“相当”,都可以忽略/跳过或过滤此代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Globalization;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
private string ConvertToTitleCase(string val)
{
string returnString = string.Empty;
System.Globalization.CultureInfo info = System.Threading.Thread.CurrentThread.CurrentCulture;
TextInfo textInfo = info.TextInfo;
returnString = textInfo.ToTitleCase(val);
return returnString;
}
protected void Button1_Click(object sender, EventArgs e)
{
if (RadioButtonList1.SelectedValue == "a")
{
Label1.Text = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(TextBox1.Text);
Label1.Text = ConvertToTitleCase(TextBox1.Text);
TextBox1.Text.Equals(TextBox1.Text, StringComparison.CurrentCultureIgnoreCase);
}
else if (RadioButtonList1.SelectedValue == "b")
{
Label1.Text = "you have selected b";
}
else if (RadioButtonList1.SelectedValue == "c")
{
Label1.Text = TextBox1.Text.ToUpper();
}
else
Label1.Text = TextBox1.Text.ToLower();
}
我需要一个提示或代码,它会忽略 TitleCase、SentenceCase、UpperCase 和 LowerCase If.. 我的字符串在“引号”内。
例子:
String TextBox1 = hello 这是“asp.net”。你在“B.Tech”,欢迎来到“HCT”。
输出:
标题案例:您好,这是“asp.net”。您在“B.Tech”,欢迎来到“HCT”。
SentenceCase:您好,这是“asp.net”。您在“B.Tech”,欢迎来到“HCT”。
大写:你好,这是“asp.net”。您在“B.Tech”,欢迎来到“HCT”。
小写:你好,这是“asp.net”。您在“B.Tech”,欢迎来到“HCT”。