是否有 VB.NET 函数将数字格式化为序数

发布于 2024-07-08 22:21:13 字数 145 浏览 6 评论 0原文

是否有内置的 VB.NET 函数可以将数字格式化为序数,还是我必须编写自己的函数?

C# 中没有,所以我认为没有:(

Is there a built in VB.NET function to format a number as an Ordinal or do I have to write my own?

There isn't in C# so I'm thinking there isn't :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

又怨 2024-07-15 22:21:13

已在 C# 中的序数中回答
搜索是你的朋友。 。 。

基本上“不,框架中没有提供方法”,但是关于如何做到这一点有很好的答案。

编辑

向那些认为我应该投否决票的人道歉,我应该将 C# 翻译成 vb.net。

Public Function AddOrdinal(ByVal num As Integer) as String
    Select Case (num Mod 100)
        Case 11 To 13
            Return num.ToString() & "th"
    End Select
    Select Case num Mod 10
        Case 1
            Return num.ToString() & "st"
        Case 2
            Return num.ToString() & "nd"
        Case 3
            Return num.ToString() & "rd"
        Case Else
            Return num.ToString() & "th"
    End Select
End Function

Already answered in Ordinals in C#
Search is your friend . . .

Basically "No, there is no method provided in the framework", but there are good answers about how to do it.

EDIT

Apologies to whom ever thought I deserved the downvote, I should have translated the C# to vb.net.

Public Function AddOrdinal(ByVal num As Integer) as String
    Select Case (num Mod 100)
        Case 11 To 13
            Return num.ToString() & "th"
    End Select
    Select Case num Mod 10
        Case 1
            Return num.ToString() & "st"
        Case 2
            Return num.ToString() & "nd"
        Case 3
            Return num.ToString() & "rd"
        Case Else
            Return num.ToString() & "th"
    End Select
End Function
如梦 2024-07-15 22:21:13

如果某个实现可用于 VB.NET,那么它也可用于 C# - 您可以从 C# 调用特定于 VB 的“标准库”。

换句话说 - 我不相信框架中有任何东西。

If an implementation were available for VB.NET, it would be available for C# as well - you can call into the VB-specific "standard libraries" from C#.

In other words - I don't believe there's anything in the framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文