Let's use the split method with a comma as the delimiter. String string = "apples,oranges,bananas"; String[] stringArray = string.split(","); ...
確定! 回上一頁