gpt4 book ai didi

java - 需要一些帮助才能从引号和括号中获取数据

转载 作者:行者123 更新时间:2023-12-01 14:58:00 24 4
gpt4 key购买 nike

我正在使用 java URL 类从 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);
}
}
}

最佳答案

http://rextester.com/replace/QYV56186不是很健壮,但适用于当前的示例。

关于java - 需要一些帮助才能从引号和括号中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14092799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com