gpt4 book ai didi

java - 如何开始使用 java 从特定行读取文本文件

转载 作者:行者123 更新时间:2023-11-29 08:27:07 24 4
gpt4 key购买 nike

我想从特定行开始读取一个文本文件我有一个这样的文本文件

        #11
mango
apple
orange
END
#22
dog
cat
monkey
END
#33
car
bus
van
END

这里我想获取#22 和 END 之间的所有行

      String text = new String(Files.readAllBytes(Paths.get("mypath")), 
StandardCharsets.UTF_8);
//multiple lines to single line
text=text.replaceAll("[\r\n]+", " ");
Pattern pattern = Pattern.compile("#22(.*?)END");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group(1));
}

它在一行中给出输出(狗猫钱)。如何从文件中仅获取以下行(逐行)

                dog
cat
monkey

我不确定特定数字(#22)之后是什么数字。#33 就是例子。任何仅使用#22 和 END(#33 之前)的方法

最佳答案

要匹配最后一个 END,您需要使用 $ anchor ,例如 "#22(.*?)END$" 表示文件结尾,或者您可以删除? 您的正则表达式应该类似于 "#22(.*)END"

你还提到:

How to get only the below lines from File(line by line)

您可以像这样使用 Pattern.DOTALL:

//text = text.replaceAll("[\r\n]+", " ");// no need to this 
Pattern pattern = Pattern.compile("#22(.*)END", Pattern.DOTALL);

这将返回:

    dog
cat
monkey
END
#33
car
bus
van

编辑

I want text between #22 and end(before #33)

在此可以使用此正则表达式 #22((.*)#33(.*?))END

Pattern pattern = Pattern.compile("#22((.*)#33(.*?))END", Pattern.DOTALL);

编辑

Is there any way without giving #33 directly.because there numbers will not be in order

在这种情况下,您可以使用用户可以提供的号码:

int number = 33;
String regex = String.format("#22((.*)#%d(.*?))END", number);
Pattern pattern = Pattern.compile(regex, Pattern.DOTALL);

关于java - 如何开始使用 java 从特定行读取文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51723036/

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