programming-examples/js/String
2019-11-15 12:59:38 +01:00
..
Alphabetize a given string.js Initial commit 2019-11-15 12:59:38 +01:00
Capitalize each word in the string.js Initial commit 2019-11-15 12:59:38 +01:00
Check if a string ends with specified suffix.js Initial commit 2019-11-15 12:59:38 +01:00
Check whether a string is blank or not.js Initial commit 2019-11-15 12:59:38 +01:00
Check whether an 'input' is a string or not.js Initial commit 2019-11-15 12:59:38 +01:00
Chop a string into chunks of a specific length.js Initial commit 2019-11-15 12:59:38 +01:00
Concatenate a specific string for a specific number of times.js Initial commit 2019-11-15 12:59:38 +01:00
Convert a string in abbreviated form.js Initial commit 2019-11-15 12:59:38 +01:00
Convert a string into camel case.js Initial commit 2019-11-15 12:59:38 +01:00
Convert a string to title case.js Initial commit 2019-11-15 12:59:38 +01:00
Convert ASCII to Hexadecimal format.js Initial commit 2019-11-15 12:59:38 +01:00
Convert Hexadecimal to ASCII format.js Initial commit 2019-11-15 12:59:38 +01:00
Count the occurrence of a substring in a string.js Initial commit 2019-11-15 12:59:38 +01:00
Create a case-insensitive search.js Initial commit 2019-11-15 12:59:38 +01:00
Create a Zerofilled value with optional +, - sign.js Initial commit 2019-11-15 12:59:38 +01:00
Escape a HTML string.js Initial commit 2019-11-15 12:59:38 +01:00
Escapes special characters for use in HTML.js Initial commit 2019-11-15 12:59:38 +01:00
Find a word within a string.js Initial commit 2019-11-15 12:59:38 +01:00
Formats a number to a human-readable string.js Initial commit 2019-11-15 12:59:38 +01:00
Get a part of string after a specified character.js Initial commit 2019-11-15 12:59:38 +01:00
Get humanized number with the correct suffix.js Initial commit 2019-11-15 12:59:38 +01:00
Get the successor of a string.js Initial commit 2019-11-15 12:59:38 +01:00
Get unique guid of the specified length, or 32 by default.js Initial commit 2019-11-15 12:59:38 +01:00
Hide email addresses to protect from unauthorized user.js Initial commit 2019-11-15 12:59:38 +01:00
Input a string and converts upper case letters to lower and vice versa.js Initial commit 2019-11-15 12:59:38 +01:00
Insert a string within a specific position in another string.js Initial commit 2019-11-15 12:59:38 +01:00
Make a string uncamelize.js Initial commit 2019-11-15 12:59:38 +01:00
Make capitalize the first letter of a string.js Initial commit 2019-11-15 12:59:38 +01:00
Make capitalize the first letter of each word in a string.js Initial commit 2019-11-15 12:59:38 +01:00
Pad (left, right) a string to get to a determined length.js Initial commit 2019-11-15 12:59:38 +01:00
Parameterize a string.js Initial commit 2019-11-15 12:59:38 +01:00
Remove a specific number of characters from a string.js Initial commit 2019-11-15 12:59:38 +01:00
Remove HTML or XML tags from string.js Initial commit 2019-11-15 12:59:38 +01:00
Remove non-printable ASCII chars.js Initial commit 2019-11-15 12:59:38 +01:00
Remove non-word characters.js Initial commit 2019-11-15 12:59:38 +01:00
Remove the first occurrence of a given 'search string' from a string.js Initial commit 2019-11-15 12:59:38 +01:00
Repeat a string a specified times.js Initial commit 2019-11-15 12:59:38 +01:00
Split a string and convert it into an array of.js Initial commit 2019-11-15 12:59:38 +01:00
Strip leading and trailing spaces from a string.js Initial commit 2019-11-15 12:59:38 +01:00
Test case insensitive (except special Unicode characters) string comparison.js Initial commit 2019-11-15 12:59:38 +01:00
Test whether a string ends with a specified string.js Initial commit 2019-11-15 12:59:38 +01:00
Test whether a string starts with a specified string.js Initial commit 2019-11-15 12:59:38 +01:00
Test whether the character at the provided character index is lower case.js Initial commit 2019-11-15 12:59:38 +01:00
Test whether the character at the provided character index is upper case.js Initial commit 2019-11-15 12:59:38 +01:00
Truncate a string if it is longer than the specified number of characters.js Initial commit 2019-11-15 12:59:38 +01:00
Uncapitalize each word in the string.js Initial commit 2019-11-15 12:59:38 +01:00
Uncapitalize the first character of a string.js Initial commit 2019-11-15 12:59:38 +01:00
Uncapitalize the first letter of each word of a string.js Initial commit 2019-11-15 12:59:38 +01:00