Answers for "remove a character from the end of a string javascript"

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
1

js remove last character from string

let str = "12345.00";
str = str.substring(0, str.length - 1);
Posted by: Guest on November-14-2020
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
1

js remove last character from string

let str = "12345.00";
str = str.substring(0, str.length - 1);
Posted by: Guest on November-14-2020

Code answers related to "remove a character from the end of a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language