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.
我需要在第一个空格之后修剪 Java 中的给定代码。前任。如果我有一个inputstartString带有值的字符串(调用它)
inputstartString
1 100 2 34
我需要得到第二个数字(在这种情况下为 100)我认为这会进行修剪,但我完全不知道在这种情况下如何做,之后我还需要为以下数字做,但我想一旦我了解了它是如何进行的,我就可以轻松地与其他人一起完成它。
Trim 用于删除尾随或前导空白字符。String#split() 怎么样?
String[] elements = "1 2 3 4".split(" ");
这将创建一个由 4 个元素组成的数组,每个元素包含一个数字。