?? newscontentfilter.java
字號:
/*
* *****************************************************
* Copyright (c) 2005 IIM Lab. All Rights Reserved.
* Created by xuehao at Dec 1, 2005
* Contact: zxuehao@mail.ustc.edu.cn
* *****************************************************
*/
package org.indigo.db.fieldfilter;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.indigo.util.*;
/**
* 在采集新聞時,用到的一個類,主要是把和config中NewsRE中的參數值匹配的正則表達式內容去掉。
* @author wbz
*
*/
public class NewsContentFilter
{
private static NewsContentFilter itsInstance=new NewsContentFilter();
private NewsContentFilter()
{
}
public static NewsContentFilter getInstance()
{
return itsInstance;
}
public String filter( String str )
{
String reText = MainConfig.getInstance().getProperty( "NewsRE" );
// System.out.println( reText );
Pattern p = Pattern.compile( reText, Pattern.CASE_INSENSITIVE );
Matcher m = null;
m = p.matcher( str );
str = m.replaceAll( "" );
return str;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -