1

是否可以告诉 Perl 忽略字符串中的换行符?

出于格式化原因,我需要换行符,因为我的字符串很长。

例如

print "hello 
world"

应该给

hello world

并不是

hello
world
4

3 回答 3

4

连接你的字符串

print "hello"
    . "world";
于 2012-09-15T22:25:35.580 回答
2

您可以将多个字符串传递给print而不是一个大字符串:

print "hello", "world";

当然,假设您没有乱用$,并且您确实在使用print.

于 2012-09-15T22:33:37.787 回答
0

1. 使用串联

打印“你好”。“世界”;

2.通过向打印函数发送多个参数

打印(“你好”,“世界”);

在键盘上试试。

于 2012-09-16T03:45:07.667 回答