我有一个结构为
的文件#n aa bb cc
其中n
是行中元素的数量,而aa
是一个元素(它们之间总是有空格)。
所以我想知道有一种方法可以在某些行中读取n然后逐个元素。
答案 0 :(得分:1)
这是一个解决方案:
Read the file in line at a time
Split the line by space
["#n", "aa", "bb", "cc"]
take the substring of the first element to exclude the # and parse an integer from it
答案 1 :(得分:0)
Java使用Regular Expressions
和java.util.regex.Pattern
内置了对java.util.regex.Matcher
的支持。这些是您需要的工具。