Answers for "javascript cut string from end"

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

how to cut a string in js

let str = "12345.00";
str = str.substring(0, str.length - 1);
console.log(str);
 Run code snippetHide results
Posted by: Guest on January-11-2022

Code answers related to "javascript cut string from end"

Code answers related to "Javascript"

Browse Popular Code Answers by Language