Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 使用已知模式从字符串中解析值的 sscanf 的 Java 等效项是什么?
我对 Java 还很陌生,但是看到 sscanf 函数有多么有用,我想知道 Java 中是否有等效函数。我有很多格式化的字符串(即,为我的目的编写脚本语言),所以正则表达式在这里是多余的。
Scanner scanner = new Scanner ("2 A text 3 4"); scanner.nextInt (); // 2 scanner.next (); // A scanner.next (); // text scanner.nextInt (); // 3 scanner.nextInt (); // 4 // and so on.
这是 Scanner 类的官方文档。