我已经在 java 中编写了一个代码,如下所示
public class sstring
{
public static void main(String[] args)
{
String s="a=(b+c); string st='hello adeel';";
String[] ss=s.split("\\b");
for(int i=0;i<ss.length;i++)
System.out.println(ss[i]);
}
}
这段代码的输出是
a
=(
b
+
c
);
string
st
='
hello
adeel
';
我应该怎么做才能拆分 =( 或 ); 等在两个单独的元素中,而不是单个元素中。在这个数组中。即我的输出可能看起来像
a
=
(
b
+
c
)
;
string
st
=
'
hello
adeel
'
;
是否可以 ?