The Perl string lc() function and uc() function are two basic functions that are easy to understand—they convert a string to all lowercase or all uppercase respectively. Perl String lc() Function The Perl lc() function takes a string, makes the entire thing lowercase and then returns ...
lc:将字符串转换为小写。 uc:将字符串转换为大写。 ucfirst:将字符串的首字母转换为大写。 lcfirst:将字符串的首字母转换为小写。 flipcase(在 Perl 5.14 及以上版本中可用):反转字符串中每个字符的大小写。 3. 编写 Perl 代码示例实现字符串的大小写转换 以下是一些使用上述函数的代码示例: perl #!/usr/bin...
lc EXPR lc 这个函数返回 EXPR 的小写形式。它是实现双引号字串里 \L 逃逸的内部函数。如果 use locale 起作用,那么将会考虑你当前的 LC_CTYPE 区域设置,不过区域设置和 Unicode 之间如何相互作用仍然是一个正在进行的研究。参阅 perllocale 手册页获取更多最近的结果。 编程学习Perl 函数 lc...
使用map作用于表中的每项。小写函数lc,lc是标量函数,并为设计为使用表。可以使用map函数作用于表中的每项: map BLOCK LIST map EXPR,LIST 1. 2. 这个函数为LIST中的每个元素进行BLOCK或EXPR计算(轮流将每个元素设置为$_)。它返回每个计算结果的表。PS:map是表上下文中对BLOCK和EXPR进行计算,所以LIST中的每个...
1.Perl array shift() && unshift() function usage. Perl'sshift()function is used to remove and return the first element from an array, which reduces the number of elements by one. Thefirst elementin the array is the on e with the lowest index. It's easy to confuse this function with...
lc- return lower-case version of a string lcfirst- return a string with just the next letter in lower case length- return the number of bytes in a string link- create a hard link in the filesytem listen- register your socket as a server ...
首先可以输入perldoc perl查看perl概览。输入perldoc perldoc查看perldoc的用法。perldoc -f PerlFunc即可查看perl的函数说明;例如perldoc -f lc,就可以查看函数lc的说明。输入perldoc perlfaq1,把1变成1..9可以查看perl如下常见问题答疑;perlfaq1 - General Questions About Perl perlfaq2 - ...
$string2 ='GEEKSFORGEEKS';# Calling toyfunction$string1 =~y/A-Z/a-z/; $string2 =~y/A-Z/a-z/;# Getting translated stringsprint"$string1\n";print"$string2\n"; 输出: gfg is a computer science portal geeksforgeeks 注意:这个 y 运算符的任务是lc()函数和uc()以及它将输入字符转换为...
函数名lcuc调用语法retval = lc(string);retval = uc(string);解说将字符串全部转换成小/大写字母。函数名lcfirstucfirst调用语法retval = lcfirst(string) 14、;retval = ucfirst(string);解说将第一个字母转换成小/大写。函数名quotameta调用语法newstring = quotemeta(oldstring);解说将非单词的字母前面加上反...
lc- return lower-case version of a string lcfirst- return a string with just the next letter in lower case length- return the number of bytes in a string link- create a hard link in the filesytem listen- register your socket as a server ...