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中的索引号删除字符串的其余部分?
由于多种原因,无法使用 replace() 或 split()。我已经设法找到我想要拆分的索引。我只需要找到一种有效的方法来实现它。我想如果没有内置任何东西,我将不得不使用循环。
任何反馈表示赞赏!
您可以使用String#substring:
s.substring(0, index);
这将为您提供上升到(但不包括)您的索引的字符串。