A string in Javascript represents a sequence of characters.
Strings are useful for holding data that can be represented in textual forms. Some of the most-used operations on strings are to check their length, to build and concatenate them using the + and += string operators, checking for the existence or location of substrings with the indexOf() method, or extracting substrings with the substring() method.
Whatever manipulation you need to do with Strings here are 12 Javascript String methods you can always reference.
The search() method matches a string against a regular expression **
It returns the index (position) of the first match.
The search() method returns -1 if no match is found.
The search() method is also case sensitive.
const str = "The quick brown fox jumps over the lazy dog";
str.search(/[^\w\s]/g); The split() method splits a string into an array of substrings.
The split() method returns the new array.
The split() method does not change the original string.
If (” “) is used as separator, the string is split between words.
const str = "The quick brown fox jumps over the lazy dog";
str.split(','); The repeat() method returns a string with a number of copies of a string.
The repeat() method returns a new string.
The repeat() method does not change the original string.
const str = "The quick brown fox jumps over the lazy dog";
str.repeat(3); The length property returns the length of a string.
The length property of an empty string is 0.
const str = "The quick brown fox jumps over the lazy dog";
str.length; The replace() method searches a string for a value or a regular expression.
The replace() method returns a new string with the value(s) replaced.
The replace() method does not change the original string.
const str = "The quick brown fox jumps over the lazy dog";
str.replace('o', 'a'); The indexOf() method returns the position of the first occurrence of a value in a string.
The indexOf() method returns -1 if the value is not found.
The indexOf() method is case sensitive.
const str = "The quick brown fox jumps over the lazy dog";
str.indexOf('fox'); The charAt() method in Ja returns the character at a specified index (position) in a string.
const str = "The quick brown fox jumps over the lazy dog";
str.indexOf('fox'); The startsWith() method returns true if a string starts with a specified string, otherwise it returns false. The startsWith() method is case sensitive.
const str = "The quick brown fox jumps over the lazy dog";
str.startsWith("The"); The toUpperCase() method converts a string to uppercase letters and does not change the original string.
const str = "The quick brown fox jumps over the lazy dog";
str.toUpperCase(); The toLowerCase() method converts a string to uppercase letters and does not change the original string.
const str = "The quick brown fox jumps over the lazy dog";
str.toLowerCase(); The match() method matches a string against a regular expression **
The match() method returns an array with the matches.
The match() method returns null if no match is found.
const str = "The quick brown fox jumps over the lazy dog";
str.match(/[A-Z]/g); Latest tech news and coding tips.
1. What Is the Golden Ratio? The Golden Ratio, represented by the Greek letter φ (phi), is…
In CSS, combinators define relationships between selectors. Instead of selecting elements individually, combinators allow you to target elements based…
Below is a comprehensive, beginner-friendly, yet deeply detailed guide to Boolean Algebra, complete with definitions, laws,…
Debugging your own code is hard enough — debugging someone else’s code is a whole…
Git is a free, open-source distributed version control system created by Linus Torvalds.It helps developers: Learn how to…
Bubble Sort is one of the simplest sorting algorithms in computer science. Although it’s not…