忽略字符串中的换行符

时间:2012-09-15 22:23:21

标签: perl line-breaks

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

由于格式很长,我需要使用换行符。

E.g。

print "hello 
world"

应给予

hello world

而不是

hello
world

3 个答案:

答案 0 :(得分:4)

连接字符串

print "hello"
    . "world";

答案 1 :(得分:2)

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

print "hello", "world";

当然假设您没有使用$,,并且您实际上正在使用print

答案 2 :(得分:0)

<强> 1。使用串联

  

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

<强> 2。通过向打印函数发送多个参数

  

print(“hello”,“world”);

codepad上试用。