私はJavaURLクラスを使用して、URLからデータを読み取ります。問題は、いくつかの文字列があり、正規表現を使用して引用符と角かっこを削除したいということです。私を助けてください。
私の入力
1 - alt="Shervin Champbell"
2 - alt=("Shervin Champbell")
結果は次のようになります
Shervin Champbell
これらの引用符と角かっこを削除したいだけです。私は一生懸命頑張っていますが無駄です。
alt、角かっこ、引用符を削除したい
出力は次のようになります:Shervin Champbell
ここに私のコードがあります
import java.io.*;
import java.util.regex.*;
public class URLReader {
public static void main(String[] args) throws Exception {
System.setProperty("http.proxyHost", "192.168.1.10");
System.setProperty("http.proxyPort", "8080");
URL url = new URL("http://www.ucp.edu.pk/information-technolo
/faculty-staff/faculty-staff.aspx");
BufferedReader in = new BufferedReader(
new InputStreamReader(url.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
//found(inputLine);
names(inputLine);
in.close();
}
static void names(String name){
Pattern pattern = Pattern.compile("");
Matcher matcher = pattern.matcher(name);
if(matcher.find()){
String abc = name.substring(matcher.start(), matcher.end());
System.out.println(abc);
}
}
}