跳過到頁腳內容
.NET幫助

Parse String to Int C#(對於開發者的運行原理)

轉換資料類型是程式設計中的基本概念,使用 C# 程式設計時,將數字的字串表示轉換為整數是最常見的工作之一。 在許多應用程式中,使用者的輸入或來自外部來源的資料需要轉換成數值格式,以便進行計算或其他作業,此流程在這些應用程式中非常有用。

在本教程中,我們將探討 C# 提供的不同方法,以將字串轉換為整數。 我們也將探討 IronPDF 函式庫首頁

將字串變數轉換為 Int 的基礎知識

Convert.ToInt32Int32.Parse 方法是 C# 中的標準工具,用於將字串值轉換為整數值。 這些函式的設計目的在於詮釋輸入字串的數值,並將其轉換為 int。 然而,如果字串格式不正確,這些方法可能會產生異常,因此異常處理是使用這些工具的重要一環。

使用 Int32.Parse 方法

Int32.Parse 方法直接將有效的數字字串轉換為整數。 它要求字串必須是有效的數值格式; 否則,它將拋出 FormatException。 當您確定字串是有效的數字時,此方法就很直接。 舉例來說

public static string inputString = "123";
public static int result = int.Parse(inputString);
Console.WriteLine(result);
public static string inputString = "123";
public static int result = int.Parse(inputString);
Console.WriteLine(result);
Public Shared inputString As String = "123"
Public Shared result As Integer = Integer.Parse(inputString)
Console.WriteLine(result)
$vbLabelText   $csharpLabel

在上面的程式碼中,inputString 包含一個有效的數字,並且 Parse 方法將其轉換為整數 123。但是,如果 inputString 包含非數字字元或是空字串,則使用 Parse 將導致 FormatExceptionArgumentNullException

使用 Convert.ToInt32 方法

將字串轉換為整數的另一種方法是 Convert.ToInt32。 此方法與 Int32.Parse 類似,但提供了更大的靈活性。 它透過返回預設值 0 來處理 null 和空字串,避免產生異常。 以下是您的使用方式:

public static string inputString = null;
public static int result = Convert.ToInt32(inputString);
Console.WriteLine(result);
public static string inputString = null;
public static int result = Convert.ToInt32(inputString);
Console.WriteLine(result);
Public Shared inputString As String = Nothing
Public Shared result As Integer = Convert.ToInt32(inputString)
Console.WriteLine(result)
$vbLabelText   $csharpLabel

此方法會將 inputString 轉換為 0,而不會拋出異常,這使得對於可能未正確初始化的變數來說更加安全。

高級技術 Int32.TryParse

為了更好地控制轉換過程,尤其是在處理可能不可靠的使用者輸入時,Int32.TryParse 是一種更可取的方法。 此方法嘗試解析數字字串,並傳回一個布林值,該值指示 TryParse 方法是否成功地將字串轉換為整數。 它使用 out 參數來返回轉換後的整數。

使用範例 Int32.TryParse

以下是如何使用 Int32.TryParse 方法安全地將字串輸入轉換為整數值,並優雅地處理任何無效的字串輸入:

string inputString = "abc123";
int num;
bool conversionSucceeded = int.TryParse(inputString, out num);
if (conversionSucceeded)
{
    Console.WriteLine("Successfully parsed: " + num);
}
else
{
    Console.WriteLine("Conversion failed. Provided string is not a valid integer.");
}
string inputString = "abc123";
int num;
bool conversionSucceeded = int.TryParse(inputString, out num);
if (conversionSucceeded)
{
    Console.WriteLine("Successfully parsed: " + num);
}
else
{
    Console.WriteLine("Conversion failed. Provided string is not a valid integer.");
}
Dim inputString As String = "abc123"
Dim num As Integer = Nothing
Dim conversionSucceeded As Boolean = Integer.TryParse(inputString, num)
If conversionSucceeded Then
	Console.WriteLine("Successfully parsed: " & num)
Else
	Console.WriteLine("Conversion failed. Provided string is not a valid integer.")
End If
$vbLabelText   $csharpLabel

在這個例子中,Int32.TryParse 傳回 false,因為 inputString 不是有效的整數。 輸出參數 num 保持不變 0,程式會通知使用者轉換失敗,而不會拋出任何例外。

IronPDF 函式庫簡介

IronPDF概述部分是一個強大的 C# 函式庫,專為使用 .NET Framework 的開發人員設計,可簡化 PDF 的操作。 它允許從 HTML、CSS、JavaScript 和圖像直接建立、編輯和管理 PDF 文件。 IronPDF 的主要功能是能夠直接將 HTML 內容轉換成 PDF。

這包括轉換整個網頁或 HTML 字串,使其具有高度彈性。 IronPDF 的設計既強大又容易整合,並支援各種開發環境。

程式碼範例

以下是一個簡單的範例,結合 IronPDF 來產生 PDF,並使用 C# 程式碼將字串解析為整數,並顯示在 PDF 內。 本範例假設您要取得數值字串,將其轉換為整數,然後在 PDF 文件中使用 IronPDF 列印整數。

using IronPdf;
using System;

class Program
{
    static void Main(string[] args)
    {
        // License your IronPdf installation
        License.LicenseKey = "Your-License-Key";

        // Create a new PDF document
        var pdf = new ChromePdfRenderer();

        // Sample string that represents an integer
        string numberString = "12345";

        // Attempt to parse the string into an integer
        int number;
        bool result = Int32.TryParse(numberString, out number);
        if (result)
        {
            // Create HTML content including the parsed number
            string htmlContent = $"<h1>The number is: {number}</h1>";

            // Generate a PDF from the HTML string
            var document = pdf.RenderHtmlAsPdf(htmlContent);

            // Save the PDF to a file
            document.SaveAs("Output.pdf");
            Console.WriteLine("PDF generated successfully with the number included.");
        }
        else
        {
            Console.WriteLine("The string could not be parsed into an integer.");
        }
    }
}
using IronPdf;
using System;

class Program
{
    static void Main(string[] args)
    {
        // License your IronPdf installation
        License.LicenseKey = "Your-License-Key";

        // Create a new PDF document
        var pdf = new ChromePdfRenderer();

        // Sample string that represents an integer
        string numberString = "12345";

        // Attempt to parse the string into an integer
        int number;
        bool result = Int32.TryParse(numberString, out number);
        if (result)
        {
            // Create HTML content including the parsed number
            string htmlContent = $"<h1>The number is: {number}</h1>";

            // Generate a PDF from the HTML string
            var document = pdf.RenderHtmlAsPdf(htmlContent);

            // Save the PDF to a file
            document.SaveAs("Output.pdf");
            Console.WriteLine("PDF generated successfully with the number included.");
        }
        else
        {
            Console.WriteLine("The string could not be parsed into an integer.");
        }
    }
}
Imports IronPdf
Imports System

Friend Class Program
	Shared Sub Main(ByVal args() As String)
		' License your IronPdf installation
		License.LicenseKey = "Your-License-Key"

		' Create a new PDF document
		Dim pdf = New ChromePdfRenderer()

		' Sample string that represents an integer
		Dim numberString As String = "12345"

		' Attempt to parse the string into an integer
		Dim number As Integer = Nothing
		Dim result As Boolean = Int32.TryParse(numberString, number)
		If result Then
			' Create HTML content including the parsed number
			Dim htmlContent As String = $"<h1>The number is: {number}</h1>"

			' Generate a PDF from the HTML string
			Dim document = pdf.RenderHtmlAsPdf(htmlContent)

			' Save the PDF to a file
			document.SaveAs("Output.pdf")
			Console.WriteLine("PDF generated successfully with the number included.")
		Else
			Console.WriteLine("The string could not be parsed into an integer.")
		End If
	End Sub
End Class
$vbLabelText   $csharpLabel

Parse String to Int C# (How It Works For Developers):圖 1 - 上一個程式碼範例輸出的 PDF

結論

在 C# 程式設計中,將字串轉換為整數是一項常見的需求,尤其是在處理來自使用者或外部來源的資料輸入時。 了解 Int32.ParseConvert.ToInt32TryParse 方法之間的差異對於編寫健壯且不易出錯的程式碼至關重要。

透過有效使用這些方法,您可以確保您的應用程式能夠處理各種輸入格式,並對無效資料作出優雅的回應。 探索 IronPDF 的免費試用授權,在承諾購買之前探索其功能。 對於那些希望將 IronPDF 長期整合到其專案中的用戶, IronPDF 許可選項從 $999 開始。

常見問題解答

我如何在 C# 中將字串轉換為整數?

在 C# 中,你可以使用 Convert.ToInt32Int32.ParseInt32.TryParse 等方法来将字符串轉换為整數。每种方法都有其自身的优势,其中 Int32.TryParse 是處理無效輸入而不產生异常的理想選择。

在 C# 中,将用戶輸入的字符串轉换為整數的最佳方法是什么?

Int32.TryParse 方法被推荐用于在 C# 中将用戶輸入字符串轉换為整數,因為它提供了一個布尔結果,指示成功或失败,從而允許程序在不抛出异常的情况下优雅地處理無效輸入。

Convert.ToInt32 方法在 C# 中如何處理空或空字符串?

C# 中的 Convert.ToInt32 方法通過返回默認整數值0来處理空或空字符串,從而避免了因無效輸入可能引發的异常。

在 C# 中使用 Int32.Parse 時為什么需要异常處理?

使用 Int32.Parse 時需要异常處理,因為如果輸入字符串不是有效的數字格式或為空,它会抛出 FormatException,如果没有正确管理,会中断程序流程。

IronPDF 能否用于将解析的整數集成到 PDF 文檔中?

是的,IronPDF 可以用于将包括解析整數在內的 HTML 內容直接轉换為 PDF 文檔,從而促進格式化數字數据的顯示和分發。

在 C# 中,将字符串轉换為整數的實际應用是什么?

一個實际應用是将用戶輸入或外部數据轉换為數字格式,用于應用程序中的计算或處理,例如在财务计算或统计分析中。

IronPDF 如何在 C# 應用程序中協助 PDF 创建?

IronPDF 是一個 C# 庫,通過允許開發人员從 HTML、CSS、JavaScript 和图像生成、编辑和管理 PDF,協助 PDF 创建,是将 Web 內容集成到 PDF 文檔中的理想工具。

在 C# 中使用 Int32.TryParse 進行整數轉换有哪些好處?

Int32.TryParse 的好處在于它不会為無效輸入抛出异常。它提供一個布尔值,指示轉换的成功,從而允許開發人员以受控的方式處理錯误。

Jacob Mellor, Team Iron 首席技術官
首席技術官

Jacob Mellor是Iron Software的首席技術官,也是開創C# PDF技術的前瞻性工程師。作為Iron Software核心代碼庫的原始開發者,他自公司成立以來就塑造了公司的產品架構,並與CEO Cameron Rimington將公司轉型為服務NASA、Tesla以及全球政府機構的50多人公司。

Jacob擁有曼徹斯特大學土木工程一級榮譽學士學位(1998年–2001年)。他於1999年在倫敦開立首家軟體公司,並於2005年建立了他的第一個.NET組件,專注於解決Microsoft生態系統中的複雜問題。

他的旗艦作品IronPDF和Iron Suite .NET程式庫全球已獲得超過3000萬次NuGet安裝,他的基礎代碼不斷在全球各地驅動開發者工具。擁有25年以上的商業經驗和41年的編碼專業知識,Jacob仍然專注於推動企業級C#、Java和Python PDF技術的創新,同時指導下一代技術領導者。

鋼鐵支援團隊

我們每週 5 天,每天 24 小時在線上。
聊天
電子郵件
打電話給我