.NET 幫助

將字串解析為整數 C#(開發人員如何操作)

發佈 2024年6月6日
分享:

轉換數據類型是程式設計中的基本概念,在使用C#進行程式設計時,將數字的字串表示轉換為整數是最常見的任務之一。 此過程在許多應用中非常有用,特別是在需要將用戶輸入或外部來源的數據轉換為數字格式以進行計算或其他操作時。

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

將字串變數轉換為整數的基本知識

Convert.ToInt32Int32.Parse 方法是 C# 中將字串值轉換為整數值的標準工具。 這些功能旨在解釋輸入字串的數值並將其轉換為整數。 然而,如果字符串格式不正確,這些方法可能會拋出異常,這使得異常處理成為使用這些工具的一個重要方面。

使用 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)
VB   C#

在上述代碼中,inputString 包含一個有效的數字,並且 Parse 方法將其轉換為整數 123。然而,如果 inputString 包含非數字字符或为空字符串,使用 Parse 將導致 FormatExceptionArgumentNullException

使用 Convert.ToInt32 方法

將字串轉換為整數的另一個轉換類別是 Convert.ToInt32。 此方法類似於 Int32.Parse,但提供了更多的靈活性。 了解如何在 C# 中有效地將字串轉換為整數,不僅能開啟許多資料操作的可能性,還能確保應用程式的強健性能。 它透過返回預設值零來處理空值和空字串,從而避免拋出異常。 以下是使用方法:

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)
VB   C#

此方法將 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
VB   C#

在此範例中,Int32.TryParse 會返回 false,因為 inputString 不是有效的整數。 out 參數 num 保持為 0,且程式通知使用者轉換失敗,同時不拋出任何例外。

IronPDF 庫介紹

IronPDF概述部分是一個穩健的 C# 函式庫,旨在簡化使用 .NET 框架的開發人員對 PDF 文件的操作。 它允許創建、編輯和管理直接從 HTML 生成 PDF 文件、CSS、JavaScript 和圖像。 IronPDF 的主要功能是能將 HTML 內容直接轉換成 PDF。

這包括轉換整個網頁或 HTML 字串,使其具有很高的靈活性。 IronPDF 被設計成既強大又易於整合,並支持各種開發環境。

範例程式碼

這是一個簡單的範例,結合使用 IronPDF 進行 PDF 生成,並使用 C# 代碼將字串解析為整數並顯示在 PDF 中。 此範例假設您想要將一個數字字串轉換為整數,然後使用IronPDF將整數打印在PDF文件中。

using IronPdf;
using System;
class Program
{
    static void Main(string[] args)
    {
        License.LicenseKey = "Your-License-Key";
        // Create a new PDF document
        var pdf = new ChromePdfRenderer();
        // Sample string that represents an integer
        string numberString = "12345";
        // 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.LicenseKey = "Your-License-Key";
        // Create a new PDF document
        var pdf = new ChromePdfRenderer();
        // Sample string that represents an integer
        string numberString = "12345";
        // 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.LicenseKey = "Your-License-Key"
		' Create a new PDF document
		Dim pdf = New ChromePdfRenderer()
		' Sample string that represents an integer
		Dim numberString As String = "12345"
		' 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
VB   C#

將字串解析為整數 C#(開發人員如何使用):圖 1 - 從先前的代碼範例輸出的 PDF

結論

在 C# 程式設計中,將字串轉換為整數是一個常見需求,特別是在處理來自用戶或外部來源的數據輸入時。 了解 Int32.ParseConvert.ToInt32TryParse 方法之間的差異對於撰寫穩健且耐錯的程式碼至關重要。

通過有效使用這些方法,您可以確保您的應用程式能夠處理各種輸入格式,並對無效數據做出合適的響應。 探索 IronPDF 的免費試用許可證讓用戶在購買前探索其功能。 對於那些希望將 IronPDF 長期整合到其項目中的人,IronPDF 授權選項從 $749 開始。

< 上一頁
Rebus .NET Core 示例(開發人員使用方式)
下一個 >
C# 呼叫基底建構函式(開發者如何運作)

準備開始了嗎? 版本: 2024.12 剛剛發布

免費 NuGet 下載 總下載次數: 11,622,374 查看許可證 >