java中分割字符串
我从程序中获取这个字符串
[user1, user2]
,我需要将其拆分为
String1 = user1
String2 = user2
I am getting this string from a program
[user1, user2]
I need it to be splitted as
String1 = user1
String2 = user2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以执行此操作,以便在以逗号分隔之前安全地删除任何括号或空格:
You could do this to safely remove any brackets or spaces before splitting on commas:
尝试,
Try,
这将完成您的工作,您将收到一个字符串数组。
This will do your job and you will receive an array of string.
尝试 String.split() 方法。
Try the String.split() methods.
从您获取此字符串的位置。您可以检查该方法的返回类型吗?
我认为返回类型将是一些数组时间,并且您可以节省 string 中的返回值。所以它附加了[]。如果不是这种情况,您可以使用用户在其他答案中建议的任何方法。
From where you are getting this string.can you check the return type of the method.
i think the return type will be some array time and you are savings that return value in string . so it is appending [ ]. if it is not the case you case use any of the methods the users suggested in other answers.
从你所说的输入来看,我认为你已经得到了一个数组,不是吗?
因此,有了这个数组,您就可以使用它们的索引来获取它们。
如果您实际上正在使用字符串,则继续,例如@WhiteFang34建议 (+1)。
From the input you are saying I think you are already getting an array, don't you?
Thus having this array you can get them using their index.
If you in fact are working with a String then proceed as, for example, @WhiteFang34 suggests (+1).