详细解释perl join函数语法和用法
网络整理 - 06-27
perl join函数语法:
join EXPR,LIST
其中,expr是表达式,list是列表,
join函数作用:
Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string.
翻译:将list中的每一个单独的字符串,用expr的值,来连接成一整个字符串。返回值为连接而成的新字符串。
join函数实例:
$join_string = join('-', "let","us","study","perl","join","function"); print $join_string;
实例运行结果为:
其中EXPR可以为空或者空格。