Removing unwanted characters canbe done bychaining replaceAll() for each character like this: var textWithout = text.replaceAll(',', '').replaceAll(';', '') ...
確定! 回上一頁