正则化提取特定字符串中间的内容

1、JS代码:

var field_regex=/(涉及).+(领域)/;
var method_regex=/(涉及一种).+(方法)/;
field_match=tech_field_str.match(field_regex);
if(field_match!=null)
{
	field_result=field_match[0].replace(field_match[1],"");
    field_result=field_result.replace(field_match[2],"");
	method_match=tech_field_str.replace(field_match[0],"").match(method_regex);
     if(method_match!=null)
     {
         method_result=method_match[0].replace(method_match[1],"");
         method_result=method_result.replace(method_match[2],"");
         patent_array.push([method_result,field_result,company_name]);
     }
}

2、PHP代码:

$field_regex='/涉及(.*?)领域/';
$method_regex='/涉及一种(.*?)方法/';
foreach ($chosen_patent as $data)   //获得patent_array
{
	preg_match($method_regex, $data[0], $method_matches);
    preg_match($field_regex, $data[0], $field_matches);
    if(count($method_matches)>=1 and count($field_matches)>=1)
    {
    	array_push($mylist,$method_matches[1],$field_matches[1],$data[1]);
    	array_push($patent_array,$mylist);
        $mylist=$this->my_pop($mylist,3);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值