perl split 字符串切割 一维数组转二维数组 5
$aa="hellocherry10.9.9.1inok";如何将$aa的数据"hellocherry10.9.9.1inok"切割成数组@aa=("hello","ch...
$aa="hello cherry 10.9.9.1 in ok";
如何将$aa的数据"hello cherry 10.9.9.1 in ok"切割成数组@aa=("hello","cherry"."10.9.9.1"."in"."ok");
这样写不行啊:
#!/usr/bin/perl -w
$aa="hello cherry 10.9.9.1 in ok";
@bb=split/\s/,$aa; 写成@bb=split/ /,$aa; 。。。。。。
以上写法都不行,求答案
报错提示:Use of uninitialized value in concatenation (.) or string at ./bb line 4. 展开
如何将$aa的数据"hello cherry 10.9.9.1 in ok"切割成数组@aa=("hello","cherry"."10.9.9.1"."in"."ok");
这样写不行啊:
#!/usr/bin/perl -w
$aa="hello cherry 10.9.9.1 in ok";
@bb=split/\s/,$aa; 写成@bb=split/ /,$aa; 。。。。。。
以上写法都不行,求答案
报错提示:Use of uninitialized value in concatenation (.) or string at ./bb line 4. 展开
3个回答
展开全部
将
#!/usr/bin/perl -w
改成
#!/usr/bin/perl
就行了.
而你的 split 可以写成
@bb = split /\s+/, $aa;
不过, 我想你想要的应该是
@aa=("hello","cherry", "10.9.9.1", "in", "ok"); # 逗号
而不是
@aa=("hello","cherry"."10.9.9.1"."in"."ok");
#!/usr/bin/perl -w
改成
#!/usr/bin/perl
就行了.
而你的 split 可以写成
@bb = split /\s+/, $aa;
不过, 我想你想要的应该是
@aa=("hello","cherry", "10.9.9.1", "in", "ok"); # 逗号
而不是
@aa=("hello","cherry"."10.9.9.1"."in"."ok");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@bb=split ("\s",$aa);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你只贴出了3行代码,但是报错是在第四行,你是不是应该把第四行也贴出来?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询