Learn and master 19 essential JavaScript string functions with real-world examples. Master 19 essential JavaScript string functions with this comprehensive tutorial. Learn how to manipulate strings, search for patterns, and perform other common tasks with ease. Examples included!
In this JavaScript string methods tutorial. We will teach you the most useful and important JavaScript string methods/functions. JavaScript string methods help to work with strings in JavaScript.
We will demonstrate JavaScript string methods like JavaScript string replace, JavaScript string contains, JavaScript string length, JavaScript string concatenation, JavaScript string substring, remove the character from string JavaScript, JavaScript string uppercase, JavaScript string lowercase, string trim, tostring method, a match in the string, split string in JavaScript,
JavaScript string substr, trim string, array to comma-separated string, etc.
You need to know some of the most important and useful JavaScript string methods/Functions.
It is used to count the number of characters in a string javascript.
var lng = "Hello Tutsmake";
var x = lng.length;
Output
// return
14
The javascript toLocaleLowerCase() is used to changed string into lower case.
var str = "Hello Dev!";
var res = str.toLocaleLowerCase();
Output
// return
hello dev!
The javascript toLocaleUpperCase () is used to changed string into upper case.
var str = "Hello Dev!";
var res = str.toLocaleUpperCase();
Output
// return
HELLO DEV!
The indexof () method returns the first position of a specified value in a string.
var txt = "Lets find where 'pen' occurs!";
var test = txt.indexOf("pen");
Output
// return
17
The javascript search () method searches a string for the specified value, and returns the status of the match.
var str = "hello dev!";
var n = str.search("dev");
Output
//Return
6
The slice () method removes the parts of a string and returns the extracted parts to a new string.
Use the Start and End Ultimate to specify the part of the string that you want to remove.
var str = "Developers world!";
var res = str.slice(0, 10);
Output
// return
Developers
The Javascript substring() method is used to removes the characters from one string, between two specified indices, and returns the new substring.
var str = "Hello dev!";
var res = str.substring(1, 4);
Output
//return
ell
A string substr() method begins on the character in the specified position, and returns the specified number of characters.
var str = "Hello dev!";
var res = str.substring(1, 4);
Output
//return
ello
The Javascript replace() changes the defined value to an another value:
var str = "Hello Dev!";
var res = str.replace("Dev", "World");
Output
// return
Hello World
The includes() method is used to determine whether a string contains the characters of a specified string or not. If is exist return true or not return false.
var str = "Hello world, my name is tutsmake.";
var n = str.includes("name");
Output
// return
True
The concat() method is used for join two or more strings.
var str1 = "Hello ";
var str2 = "keny!";
var res = str1.concat(str2);
Output
// return
Hello Keny
The Javascript charAt() is used to take a character to a described index location:
var txt = "Hello Keny";
txt.charAt(0);
Output
// return
H
The charCodeAt()
method returns the Unicode of the character at a specified index in a string:
var str = "TEST";
str.charCodeAt(0);
Output
// return
84
The lastIndexOf()
the method returns the index of the last occurrence of a specified text in a string:
var str = "Your are talented dev";
var pos = str.lastIndexOf("dev");
Output
// return
18
The javascript trim() method removes whitespace from both sides of a given string:
var str = " Trim Both Side ";
alert(str.trim());
Output
// return
Trim Both Side
The match() method searches a string for a match against a regular expression, and returns the matches, as an Array object.
var str = "lopersum lopersum lopersum lopersum.";
var res = str.match(/sum/g);
Output
// return
sum,sum,sum,sum
The javascript split method, which is used to convert string to an array:
var str = "1,2,3,4,5";
var arr = str.split(",");
document.write(arr[0]);
document.write("<br>");
document.write(arr[1]);
Output
// return
1
2
The javascript toString() method returns the value of a String object.
var str = "javaScript World!";
var res = str.toString();
Output
// return
javaScript World!
The javascript valueOf() method, which is used to gets the primitive value of a String object.
var str = "javaScript World!";
var res = str.valueOf();
Output
// return
javaScript World!
#javascript #web-development