JavaScript String replace() Method The JavaScript string replace() method is used to replace a part of a given string with a new…
concat()
-
-
JavaScript String search() Method The JavaScript string search() method is used to search the regular expression in the given string. This method…
-
MySQL MID() Function MID(str,pos,len) is a Sring function of MySQL. This method returns string of given length and position. Syntax select mid(str,…
-
JavaScript String slice() Method The JavaScript string slice() method is used to fetch the part of the string and returns the new…
-
JavaScript String substr() Method The JavaScript string substr() method fetch the part of the given string and return the new string. The…
-
MySQL OCTET_LENGTH() Function OCTET_LENGTH(str) is a Sring function of MySQL. This method returns length of given string. Syntax select octet_length(str); Example 1…
-
JavaScript String substring() Method The JavaScript string substring() method fetch the string on the basis of provided index and returns the new…
-
MySQL POSITION() Function POSITION(substr IN str) is a Sring function of MySQL. This method returns position of the given sub string in…
-
JavaScript String toString() Method The JavaScript toString() method returns a string representing the calling object. In other words, this method provides a…
-
MySQL LEFT() Function LEFT(str,len) is a Sring function of MySQL. This method returns left side ‘len’ characters from the given string ‘str’.…