gpt4 book ai didi

java - 字符串以 '\n' 结尾最有效的操作方法是什么?

转载 作者:行者123 更新时间:2023-12-01 06:48:08 25 4
gpt4 key购买 nike

碰巧用户单击 Enter,而我不想将其作为输入的一部分,该字符串可以以 3 次\n 结尾,因此仅替换一个无法完成这项工作我的解决方案是;

String values[] = string_Ends_With_Back_Slash_N.split("\n"); 
String String_without_Back_Slash_N =new String (values [0]);
//or just to point there without the new but i want later to dump the garbage.

或者至少现在将值转储到GC......

所以两个q:

  1. 有更有效的方法吗?..
  2. 我该称呼谁为编译器(android 上的 java ...)

最佳答案

尝试String.trim()

此方法删除字符串末尾的所有字符,这些字符的 ascii 代码小于空格(间隔,32)。这包括 \n (10)。

关于java - 字符串以 '\n' 结尾最有效的操作方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3108897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com