![]() |
In JavaScript, there are several ways to truncate a string which means cutting off a part of the string to limit its length. Truncating a string is useful when we want to display only a certain number of the characters in the user interfaces such as previewing a longer text or ensuring that text fits within the specified space. Use the below methods to Truncate a String in JavaScript: Using the substring() methodIn this approach, we are using the substring() method to extract characters from the string between the two specified indices and return the new sub-string. Example: Truncate a String in JavaScript using the substring() method.
Output GeeksforGeeks, Learn... Using the slice() methodIn this approach, we are using the slice() method that extracts a section of the string and returns it as a new string without the modifying the original string. Example: Truncate a String in JavaScript using the slice() method.
Output GeeksforGeeks , Lear... Using Regular ExpressionIn this approach, we use a regular expression to match the desired number of characters from the beginning of the string. This method can be particularly useful if you want to ensure that the truncation does not break words in the middle. Example: Truncate a String in JavaScript using a regular expression.
Output This is a long strin |
Reffered: https://www.geeksforgeeks.org
JavaScript |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 14 |