String.PadLeft 方法

定义

返回指定长度的新字符串,其中当前字符串的开头用空格或指定的 Unicode 字符填充。

重载

名称 说明
PadLeft(Int32)

返回一个新字符串,该字符串通过在左侧用空格填充字符,使此实例中的字符右对齐,以指定的总长度。

PadLeft(Int32, Char)

返回一个新字符串,该字符串通过用指定的 Unicode 字符在左侧填充字符,以指定的总长度来右对齐此实例中的字符。

PadLeft(Int32)

Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs

返回一个新字符串,该字符串通过在左侧用空格填充字符,使此实例中的字符右对齐,以指定的总长度。

public:
 System::String ^ PadLeft(int totalWidth);
public string PadLeft(int totalWidth);
member this.PadLeft : int -> string
Public Function PadLeft (totalWidth As Integer) As String

参数

totalWidth
Int32

生成的字符串中的字符数,等于原始字符数加上任何其他填充字符数。

返回

一个等效于此实例的新字符串,但在左侧对齐并填充了任意数量的空格,以创建长度 totalWidth。 但是,如果 totalWidth 小于此实例的长度,该方法将返回对现有实例的引用。 如果 totalWidth 等于此实例的长度,该方法将返回与此实例相同的新字符串。

例外

totalWidth 小于零。

示例

以下示例演示了该方法 PadLeft

string str = "BBQ and Slaw";
Console.WriteLine(str.PadLeft(15));  // Displays "   BBQ and Slaw".
Console.WriteLine(str.PadLeft(5));   // Displays "BBQ and Slaw".
let str = "BBQ and Slaw"
printfn $"{str.PadLeft 15}"  // Displays "   BBQ and Slaw".
printfn $"{str.PadLeft 5}"   // Displays "BBQ and Slaw".
Dim str As String
str = "BBQ and Slaw"
Console.WriteLine(str.PadLeft(15)) ' Displays "   BBQ and Slaw".
Console.WriteLine(str.PadLeft(5))  ' Displays "BBQ and Slaw".

注解

Unicode 空间定义为十六进制0x0020。

该方法 PadLeft(Int32) 填充返回的字符串的开头。 这意味着,当与从右到左的语言一起使用时,它将填充字符串的右侧部分。

注释

PadLeft如果该方法用空格字符填充当前实例,此方法不会修改当前实例的值。 而是返回用前导空格填充的新字符串,以便其总长度为 totalWidth 字符。

另请参阅

适用于

PadLeft(Int32, Char)

Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs
Source:
String.Manipulation.cs

返回一个新字符串,该字符串通过用指定的 Unicode 字符在左侧填充字符,以指定的总长度来右对齐此实例中的字符。

public:
 System::String ^ PadLeft(int totalWidth, char paddingChar);
public string PadLeft(int totalWidth, char paddingChar);
member this.PadLeft : int * char -> string
Public Function PadLeft (totalWidth As Integer, paddingChar As Char) As String

参数

totalWidth
Int32

生成的字符串中的字符数,等于原始字符数加上任何其他填充字符数。

paddingChar
Char

Unicode 填充字符。

返回

一个新字符串,等效于此实例,但用任意数量的 paddingChar 字符在左侧对齐和填充,以创建长度 totalWidth。 但是,如果 totalWidth 小于此实例的长度,该方法将返回对现有实例的引用。 如果 totalWidth 等于此实例的长度,该方法将返回与此实例相同的新字符串。

例外

totalWidth 小于零。

示例

以下示例演示了该方法 PadLeft

using System;

class Sample
{
   public static void Main()
   {
   string str = "forty-two";
   char pad = '.';

   Console.WriteLine(str.PadLeft(15, pad));
   Console.WriteLine(str.PadLeft(2, pad));
   }
}
// The example displays the following output:
//       ......forty-two
//       forty-two
let str = "forty-two"
let pad = '.'

printfn $"{str.PadLeft(15, pad)}"
printfn $"{str.PadLeft(2, pad)}"
// The example displays the following output:
//       ......forty-two
//       forty-two
Public Class Example
   Public Shared Sub Main()
      Dim str As String
      Dim pad As Char
      str = "forty-two"
      pad = "."c
      Console.WriteLine(str.PadLeft(15, pad)) 
      Console.WriteLine(str.PadLeft(2,  pad))
    End Sub
End Class
' The example displays the following output:
'       ......forty-two
'       forty-two

注解

该方法 PadLeft(Int32, Char) 填充返回的字符串的开头。 这意味着,当与从右到左的语言一起使用时,它将填充字符串的右侧部分。

注释

PadLeft如果该方法用空格字符填充当前实例,此方法不会修改当前实例的值。 而是返回用前导 paddingChar 字符填充的新字符串,以便其总长度为 totalWidth 字符。

另请参阅

适用于