正则表达式在各种语言中使用

1.python中使用

"""
@author :Eric-chen
@contact :sygcrjgx@163.com
@time :2020/8/13 17:43
@desc :
"""
import re

# pattern=re.compile("^.*(ods_ogg_erp_cd[\w-]{1,1000}).*$")
pattern=re.compile("ods_ogg_erp_cd[\w-]{1,1000}")

with open('F:\python\codes\pythonLearn\mappingScript_erp_cd_e5_26.xml', 'r',encoding='utf8') as f:
    line=f.readline()
    while line:
        m=pattern.findall(line)
        if m:
            print(m)
        line=f.readline()

2.java中使用 

 

package com;

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class test {
    public static void main(String[] args) throws IOException {
        Pattern pattern = Pattern.compile("ods_ogg_erp_cd[\\w-]{1,1000}");
        String path = "F:\\python\\codes\\pythonLearn\\mappingScript_erp_cd_e5_26.xml";
        File file = new File(path);
        List<String> stringList = FileUtils.readLines(file, "utf-8");
        for (String line : stringList) {
            Matcher matcher = pattern.matcher(line);
            if (matcher.find())
                System.out.println(matcher.group(0));
        }
    }
}

  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值