📜  C#字符串PadLeft()方法

📅  最后修改于: 2020-10-31 03:46:37             🧑  作者: Mango

C#字符串PadLeft()

如果字符串长度小于指定的长度,则使用C#PadLeft()方法获取一个新字符串,该字符串使该字符串的字符右对齐。

例如,假设您将“ hello C#”作为具有8个字符长度的字符串,并且将10传递给了padleft,则它将字符串在右侧移了两个空格。这意味着PadLeft()方法为指定长度的字符串提供填充。它用于格式化字符串内容。

签名

public string PadLeft(Int32 length)
public string PadLeft(Int32, Char)

参数

length:它是一个整数类型参数,用于传递填充。

返回

它返回字符串。

C#String PadLeft()方法示例

using System; 
            
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
        string s1 = "Hello C#";// 8 length of characters
        string s2 = s1.PadLeft(10);//(10-8=2) adds 2 whitespaces at the left side
        Console.WriteLine(s2);
      }  
    }  

输出:

  Hello C#