当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String PadLeft()用法及代码示例


C# PadLeft() 方法用于获取一个新的字符串,如果字符串长度小于指定长度,则 right-aligns 该字符串中的字符。

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

签名

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

参数

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

返回

它返回字符串。

C# 字符串 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#




相关用法


注:本文由纯净天空筛选整理自 C# String PadLeft()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。