perl里用大括号括起来的变量有什么意思${变量名}

$a = "--${Str}尀r尀n"和$a = "--$Str尀r尀n"有什么区别
2024-11-16 07:30:48
推荐回答(3个)
回答(1):

如果大括号内是标量变量的话,那这里的作用就是限定变量界限的。在[$a = "--${Str}\r\n"和$a = "--$Str\r\n"有什么区别]里是没有什么区别的。

回答(2):

如果大括号内是标量变量的话,那这里的作用就是限定变量界限的。在[$a = "--${Str}\r\n"和$a = "--$Str\r\n"有什么区别]里是没有什么区别的。

$str = 'my name';$strstr='your name';echo  "${str}str is hello"; //my namestr is helloecho "$strstr is hello"; //your name is helloecho "$strabc is hello"; // Undefined variable: strabc in {}的作用是限制变量名。

回答(3):

$str = 'my name';
$strstr='your name';

echo "${str}str is hello"; //my namestr is hello
echo "$strstr is hello"; //your name is hello
echo "$strabc is hello"; // Undefined variable: strabc in
{}的作用是限制变量名