Fastest way to remove hyphens from a string January 26, 2023 by Tarik You need to include the global flag: var str="185-51-671"; var newStr = str.replace(/-/g, "");