Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以告诉 Perl 忽略字符串中的换行符?
出于格式化原因,我需要换行符,因为我的字符串很长。
例如
print "hello world"
应该给
hello world
并不是
连接你的字符串
print "hello" . "world";
您可以将多个字符串传递给print而不是一个大字符串:
print
print "hello", "world";
当然,假设您没有乱用$,并且您确实在使用print.
$,
1. 使用串联
打印“你好”。“世界”;
2.通过向打印函数发送多个参数
打印(“你好”,“世界”);
在键盘上试试。