免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7223 | 回复: 7
打印 上一主题 下一主题

如何把一个字符串分解成单个字符 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-27 16:11 |只看该作者 |倒序浏览
如题

论坛徽章:
23
15-16赛季CBA联赛之吉林
日期:2017-12-21 16:39:27白羊座
日期:2014-10-27 11:14:37申猴
日期:2014-10-23 08:36:23金牛座
日期:2014-09-30 08:26:49午马
日期:2014-09-29 09:40:16射手座
日期:2014-11-25 08:56:112015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:49:0315-16赛季CBA联赛之山东
日期:2017-12-21 16:39:1915-16赛季CBA联赛之广东
日期:2016-01-19 13:33:372015亚冠之山东鲁能
日期:2015-10-13 09:39:062015亚冠之西悉尼流浪者
日期:2015-09-21 08:27:57
2 [报告]
发表于 2008-08-27 16:29 |只看该作者
perl -e '$_ = "abcdefg"; s/(.)/$1\n/g; print'

论坛徽章:
0
3 [报告]
发表于 2008-08-27 16:56 |只看该作者
perl -e '$_ = "how are you 2008";s/ *(\S)/$1\n/g;print'

[ 本帖最后由 caining062 于 2008-8-27 16:58 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2008-08-27 16:57 |只看该作者
split //, "abcdef"

论坛徽章:
0
5 [报告]
发表于 2008-08-27 17:08 |只看该作者
unpack   

论坛徽章:
0
6 [报告]
发表于 2008-08-27 20:22 |只看该作者
多谢楼上诸位。仔细google了一下,转一篇http://www.perlmeme.org/faqs/man ... ing_characters.html的文章总结一下
Solution 1: split

If you pass no seperator into split, it will split on every character:

   
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";

  5.     my @chars = split("", $string);

  6.     print "First character: $chars[0]\n";
复制代码


The output of this program is:

    First character: H

Solution 2: substr

You can access an individual character using substr:

   
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";
  5.     my $char = substr($string, 7, 1);

  6.     print "Char is: $char\n";
复制代码


The above code would output:

    Char is: h

Solution 3: Unpack

Like substr, if you want a character from a particular position, you can use unpack:

   
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";
  5.     my $char = unpack("x9a1", $string);

  6.     print "Char is: $char\n";
复制代码


The output of this program is:

    Char is: w

Solution 4: substr and map

If you want to access all the characters individually, you can build them into an array (like Solution 1) using substr and map:

   
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";
  5.     my @chars = map substr( $string, $_, 1), 0 .. length($string) -1;

  6.     print "First char is: " . $chars[0] . "\n";

  7.     exit 0;
复制代码

The output of this example would be:

    First char is: H

Solution 5: Regular expression

You can use a regular expression to build an array of chars:

   
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";
  5.     my @chars = $string =~ /./sg;

  6.     print "Fourth char: " . $chars[3] . "\n";

  7.     exit 0;
复制代码


The output of this program is:

    Fourth char: l

Solution 6: unpack

unpack can also unpack individual chars into an array:

  
  1. #!/usr/bin/perl
  2.     use strict;
  3.     use warnings;

  4.     my $string = "Hello, how are you?";
  5.     my @chars = unpack 'a' x length $string, $string;

  6.     print "Eighth char: $chars[7]\n";

  7.     exit 0;
复制代码


The output would be:

    Eighth char: h

See also

    perldoc -f split
    perldoc -f substr
    perldoc -f pack
    perldoc -f unpack

论坛徽章:
0
7 [报告]
发表于 2008-08-27 20:25 |只看该作者
google 得力量是强大得

论坛徽章:
0
8 [报告]
发表于 2008-08-27 20:25 |只看该作者
there is more than one way to do it
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP