char配列内のさまざまな要素をテストしましたが、それらが条件を満たさない場合は、配列から削除します。これを行う方法はありますか?
これが私のコードソファです
String s;
char[] b = inputString.toCharArray();
b = new char[b.length];
do
{
if(!(b[i]>='0')&&(b[i]<='9')&&(b[i]!='.'))
{
s = Character.toString(b[i]);
if(s.equals("+"))
{
t = 1;
}
else if(s.equals("-"))
{
t = 2;
}
else if // and so on
}
else
{
t = 1029;
}
//want to delete element here if they fail if test
}