`
standalone
  • 浏览: 596085 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

perl tips for qw qq qx q

    博客分类:
  • perl
阅读更多
q// is generally the same thing as using single quotes - meaning it doesn't interpolate values inside the delimiters.
qq// is the same as double quoting a string. It interpolates.
qw// return a list of white space delimited words. @q = qw/this is a test/ is functionally the same as @q = ('this', 'is', 'a', 'test')
qx// is the same thing as using the backtick operators.
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics