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.
给定一个字符串“Hello”。我只希望第一个字母之后的所有字母都在我的新字符串中。
例如:“你好”
怎么可能做到这一点?
尝试了模式匹配,但不能让它工作:(
尝试这个:
String s = "Hello"; String newS = s.substring(1); // newS is "ello"
以上将创建一个新字符串,其中包含原始字符的所有字符,第一个字符除外。有关更多详细信息,请参阅文档。