找到一个特定的单词并打破

时间:2016-02-18 04:25:06

标签: java string find break word

我正在扫描用户的输入字符串。当用户在字符串中输入#END命令时,程序将中断并显示输出。我如何克服这个问题?

例如

;

  

注意如何记笔记。例如,我可以把#END   在这里,它不会保存其余部分。

输出:

  

注意如何记笔记。例如,我可以把

1 个答案:

答案 0 :(得分:1)

最简单的方法是

  String input = "Pay attention to how notes are taken. For instance, I can put #END here, and it won't save the rest.";

  String [] out = input.split ("#END");

  System.out.println (out[0]);

如果来自用户使用Scanner类。