Impliment this code: String str = "a12.334tyz.78x";. str = str.replaceAll("[^\\d.]", "");. Now str will contain "12.334.78". this code: ...
確定! 回上一頁