本文介绍了Scanner类Java中的多个分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用扫描仪类的 useDelimiter()方法同时使用逗号(,)和新行字符(\ n)作为分隔符?

How do I use the useDelimiter() method of the Scanner class to use both the comma (,) and the new line character (\n) as delimiters?

我正在解析csv文件中的一些文本。

I am parsing some text from a csv file.

推荐答案

 Scanner s = new Scanner("hello, world \n hello world");
 s.useDelimiter(",|\\n");
 while(s.hasNext()){
          System.out.println(s.next());

 }

输出

hello
 world 
 hello world





    • JavaDoc
    • 这篇关于Scanner类Java中的多个分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 06:29