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 中拆分给定的字符串。在第七次分裂之后,我想保留在那之后的一切作为第八次分裂。最后一个拆分也将包含选项卡,但必须保持完整。
使用split带两个参数的方法,第二个是拆分限制。您可以传入的限制为8. 第八个元素将包含第七次拆分后的其余字符串。
split
8