Answers for "javascript remove period from end of string"

1

javascript remove period from end of string

// Single dot:
if (str[str.length-1] === ".")
    str = str.slice(0,-1);
// Multiple dots:
while (str[str.length-1] === ".")
    str = str.slice(0,-1);
// Single dot, regex:
str = str.replace(/\.$/, "");
// Multiple dots, regex:
str = str.replace(/\.+$/, "");
Posted by: Guest on March-08-2021

Code answers related to "javascript remove period from end of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language