如何打印文件中以条件字符串开头和结尾的某些行

发布于 2024-12-11 20:31:32 字数 256 浏览 0 评论 0原文

我有一个这样的.txt文件:

[abc]
There is 
a lot of
contents here 
[abc]

[def]
Here are 
many other
contents
[def]

[ghi]
and bunch of 
contents here too
[ghi]

我想打印出标记字符串之间的内容,例如:打印出[abc]和[abc]之间的所有内容,而不打印出任何[abc]行。我怎样才能做到这一点?

I have a .txt file like this:

[abc]
There is 
a lot of
contents here 
[abc]

[def]
Here are 
many other
contents
[def]

[ghi]
and bunch of 
contents here too
[ghi]

I want to print out the contents between the tagged strings, for example: print out all the contents between [abc] and [abc], without printing out any [abc] line. How could I accomplish that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月蹉跎了容颜 2024-12-18 20:31:33

使用布尔标志可以在简单的时间内完成

boolean printing=false;
while((line=in.readLine())!=null){
    if(line.startsWith("[abc]"){
        printing=!printing;
    }else if (printing){
        System.out.println(line);
    }
}

doable in a simple while with a boolean flag

boolean printing=false;
while((line=in.readLine())!=null){
    if(line.startsWith("[abc]"){
        printing=!printing;
    }else if (printing){
        System.out.println(line);
    }
}
音盲 2024-12-18 20:31:33

使用 bufferedreader 和文件读取器进行输入。
循环输入行并使用 string.equals(string method) 来满足您的条件。
不为你写代码

if (readline) // for opening tag
    while (readline)
        printline
        if (readline) // for closing tag
            break;

Use bufferedreader and file reader for input.
loop through line of input and use the string.equals(string method) for your condition.
not writing code for you

if (readline) // for opening tag
    while (readline)
        printline
        if (readline) // for closing tag
            break;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文