-6

我想添加SuperScript到数字中C#

例子:

1st, 2nd ......

这我想动态地做ASP.NET/C#

请提出最佳解决方案。

4

3 回答 3

5

我不太确定你到底想要什么。

你可以做这样的事情。

假设您有一个 ASP.NET 标签

<asp:Label ID="sample" runat="server" Text=""></asp:Label> 

然后在后面的代码中你可以做这样的事情

sample.Text=string.Format("1<sup>st</sup>");

这将输出为 1 st

于 2012-08-18T10:33:06.240 回答
2

使用<sup>标签是标记这些值的正确方法。

这我想在asp.net c#中动态地做

如果您对语言环境有所了解,则可以自动将<sup>标签添加到文本中。

匹配

// this should go in a helper class

// Obviously this depends on locale. The regex can be altered to accept numbers
// with as many digits as desired. I think "th" is always an appropriate suffix
// in English (not sure).
private static readonly Regex _regex = new Regex( @"^(\d{1,8})(st|nd|rd|th)$", RegexOptions.Compiled );

public static string AddSuper( string value ) {
    return _regex.Replace( value, "$1<sup>$2</sup>" );
}

用法

// in code-behind
this.litMyText.Text = AddSuper( "1st" );

// a few test cases (also demonstrates processing multiple items)

// should match
var testValues = new[] { "1st", "2nd", "10th", "20th", "1000th", "3rd", "19th" };

foreach( string val in testValues ) {
    Response.Write( AddSuper( val ) );
}

// should not match
testValues = new[] { "test", "nd", "fourth", "25", "hello world th", "15,things", "1 1 1thousand" };

foreach( string val in testValues ) {
    Response.Write( AddSuper( val ) );
}

匹配值的输出

1<sup>st</sup>
2<sup>nd</sup>
10<sup>th</sup>
20<sup>th</sup>
1000<sup>th</sup>
3<sup>rd</sup>
19<sup>th</sup>
于 2012-08-18T10:40:06.643 回答
0

您可以使用<sup>标签:

1<sup>st</sup> 2<sup>nd</sup>, ...

将呈现为: 1 st 2 nd , ...

于 2012-08-18T10:23:01.433 回答