在 Cool 中§

有关例程 trim-leading 的主要文档,请参阅上下文

sub trim-leading(Str(Cool))
method trim-leading()

将调用方(或在子窗体中,其参数)强制转换为 Str,并返回删除了前导空格的字符串。

my $stripped = '  abc '.trim-leading;
say "<$stripped>";          # OUTPUT: «<abc >␤»

在 Allomorph 中§

有关方法 trim-leading 的主要文档,请参阅上下文

method trim-leading(Allomorph:D:)

对调用方的 Str 值调用 Str.trim-leading

在 Str 中§

有关方法 trim-leading的更多信息,请参阅上下文中的主要文档。

method trim-leading(Str:D: --> Str)

从字符串开头删除空白字符。另请参阅trim