作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个文本文件sample.txt,其中包含如下信息:
John-Mike "male" "a computer scientist" 6 9
我想将此文件读入数组,其中
array[0] = John-Mike
array[1] = male
array[2] = a computer scientist
array[3] = 6
array[4] = 9
我已经尝试过
String[] tokens = file.nextLine().split(" ");
它给了我这样的东西
array[0] = John-Mike
array[1] = male
array[2] = a
array[3] = computer
array[4] = science
array[5] = student
.
.
.
但这会分割所有白色的步数,包括撇号中的步数,并将它们分开存储。如何使用 split 来通过扫描仪操作它?我已经在网络上搜索了很多时间来寻找可靠的解决方案,但我还没有找到。任何引用或信息都会很棒
编辑:
您不能仅为了更改分隔符而向文本文件添加任何内容
最佳答案
您需要编写一个正则表达式才能以这种方式拆分它。查看这篇文章: Split string on spaces in Java, except if between quotes (i.e. treat \"hello world\" as one token)
关于java - 如何在java中分割由多个分隔符分隔的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36167052/
我是一名优秀的程序员,十分优秀!