gpt4 book ai didi

java - 从字符串中获取特定子字符串

转载 作者:行者123 更新时间:2023-11-30 03:29:12 25 4
gpt4 key购买 nike

我有一个长字符串,例如:

“[文本1][文本2][文本3][文本4][文本5]%&/!”

如何仅将封装在 [] 中的子字符串插入到 arrayList 中。所以外面的符号就像 % &/!不会被插入吗?

最佳答案

使用正则表达式 - 这应该适合你:

import java.util.ArrayList;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexSquareBrackets{
public static void main(String[] args) {
String input = "[text1] [text2] [text3] [text4] [Text5] % & / !";

Pattern pattern = Pattern.compile("\\[(.*?)\\]");
Matcher matcher = pattern.matcher(input);
ArrayList<String> output = new ArrayList<String>();
while (matcher.find())
output.add(matcher.group(1));

//Print the items out
System.out.println("Found Text: " + output);
}
}

然后,您的 ArrayList 输出中将包含以下项目:“text1”、“text2”、“text3”、“text4”、“Text5”。

关于java - 从字符串中获取特定子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29452573/

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