首頁 > 後端開發 > C++ > 如何在 C# 中將數字轉換為序數形式(第一、第二、第三等)?

如何在 C# 中將數字轉換為序數形式(第一、第二、第三等)?

Linda Hamilton
發布: 2025-01-14 16:26:43
原創
366 人瀏覽過

How to Convert Numbers to Ordinal Forms (1st, 2nd, 3rd, etc.) in C#?

C# 中的數字序數轉換

C# 中,字串格式化函數並不直接支援序數。要將數字轉換為序數形式,需要使用自訂函數。

<code class="language-csharp">public static string AddOrdinal(int num)
{
    if (num <= 0) return num.ToString();

    string suffix = "th";
    int lastDigit = num % 10;
    int lastTwoDigits = num % 100;

    if (lastDigit == 1 && lastTwoDigits != 11) suffix = "st";
    else if (lastDigit == 2 && lastTwoDigits != 12) suffix = "nd";
    else if (lastDigit == 3 && lastTwoDigits != 13) suffix = "rd";

    return num + suffix;
}</code>
登入後複製

此函數處理小於等於零的數字的序數,並為不同的情況提供不同的後綴(例如,1st、2nd、3rd 等)。

使用方法:

<code class="language-csharp">int num = 5;
string ordinalForm = AddOrdinal(num);
Console.WriteLine(ordinalForm); // 输出:5th</code>
登入後複製

注意:

  • 小於等於零的數字沒有序數,因此函數會相應地處理此類情況。
  • 此函數未進行國際化,這表示它僅支援英語序數形式。

以上是如何在 C# 中將數字轉換為序數形式(第一、第二、第三等)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板