毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 开发语言 >> 正文

perl的正则或其他方法匹配每组内容,怎么做

更新时间:2012-6-14:  来源:毕业论文

DATE:
[group1]
aaa
bbb
ccc

[group2]
aaa
eee
ccc

[group3]

[group4]
aaa
ccc

perl 的正则 或 其他方法 匹配每组内容,怎么做

#!/usr/bin/env perl

use strict;
use warnings;

while (<DATA>) {
    if (/^(\w)(\1+)$/) {
        print;
    }
}

__DATA__
aaa
bbb
ccc
abc

use Config::Std;

    # Load named config file into specified hash...
    read_config 'demo2.cfg' => my %config;

    # Extract the value of a key/value pair from a specified section...
    $config_value = $config{Section_label}{key};

    # Change (or create) the value of a key/value pair...
    $config{Other_section_label}{other_key} = $new_val;

    # Update the config file from which this hash was loaded...
    write_config %config;

    # Write the config information to another file as well...
    write_config %config, $other_file_name;

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。