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.
次のように、新しい行を文字列に更新しています。
mystring=mystring+"何らかの入力文字列"+"\n";
しかし、文字列から最後の行を削除する必要がある場合、どうすればよいですか?
'\n'からすべてを削除する場合はString、次を使用できます。
'\n'
String
mystring = mystring.remove('\n','');