java解析字符串拆分单独元素
有时候,需求要求传递多个字符串参数,但是方法参数已经固定为单个String,笔者在学习unity和android之间的消息传递时就遇到这个问题,所以就写了这么一个解析字符串拆分单独元素的方法。
示例:“@my@red@apple”
解析为:
my
red
apple
1 package cutstring; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 import java.util.Scanner; 6 /** 7 * 8 * @ClassName: MainClass 9 * @Description: 字符串格式"@a@b@c",a,b,c会被解析为单独的元素 10 * @author luxishi 11 * @date 2016年3月8日 下午5:57:56 12 * 13 */ 14 public class MainClass { 15 16 public static void main(String[] args) { 17 String m_sentence="@my@red@apple"; 18 List<String> m_list=cutstring(m_sentence); 19 System.out.println(m_list.size()); 20 for(String tmp:m_list){ 21 System.out.println(tmp); 22 } 23 24 } 25 26 static List<String> cutstring(String Stence) 27 { 28 List<String> stringlist=new ArrayList<String>();//用来存储解析出来的元素 29 for(int i=0;i<Stence.length();i++) 30 { 31 if(Stence.charAt(i)=='@') 32 { 33 String temp="";//存储单词 34 int wordlength=i; 35 while(wordlength<Stence.length()-1&&Stence.charAt(++wordlength)!='@') 36 { 37 temp+=Stence.charAt(wordlength); 38 //System.out.println(temp); 39 } 40 stringlist.add(temp); 41 } 42 } 43 return stringlist; 44 } 45 }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步