package test;
public class StrSplt {
public static void main(String[] args) {
/**
* 要求:用程序拿出字符串数组中,中括号里面的内容
*/
String[] info={"qwe[jfhr]uiwqye;qwydgqwe[jhvnbn]uiwqueyu",
"bdjhwui[fhfe]vkjmnbbr;yuqyw[cnehhe]qhvvbb",
"uiwqyuer[vnrh]jhkvjhksdgh;osdahuksdahk[hvnbvnbv]uiqwjhewqe",
"jhqyw[cmdjd]"};
}
}
1 回答
尧叔
TA贡献77条经验 获得超201个赞
我给你提供个思路你自己试试 ,手机不好敲代码,就拿一个字符串做例子
遍历一个字符串,
当遇到"["开始记录,遇到"]"返回字符串
重复第二步直到这个字符串遍历完。
添加回答
举报
0/150
提交
取消