length EXPR length |
返回 EXPR 的字符長度的值 或者 如是冇有指定則是 $_ 。標量上下文中使用一個數組或散列,如果你想確定相應的尺寸。
字符串的大小.
試試下麵的例子:
#!/usr/bin/perl
$orig_string = "This is Test and CAPITAL";
$string_len = length( orig_string );
print "Length of String is : $string_len\n";
It will produce following result
#by www.gitbook.net
Length of String is : 11