PHP String strtr() function The strtr() is an in-built function of PHP, which is used to replace a substring inside the other…
mysql
-
-
PHP String substr() Function The substr() is a built-in function of PHP, which is used to extract a part of a string.…
-
PHP chunk_split() Function PHP chunk_split() function is used to splits a string into smaller parts or chunks. The function does not alter…
-
PHP string crypt() Function The crypt() is predefined PHP string function. It is used to returns a hashed string by using DES,…
-
PHP addcslashes() Function PHP addcslashes() function is used to add quote string with slashes in a C style. It is case-sensitive Syntax:…
-
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…
-
MySQL POSITION() Function POSITION(substr IN str) is a Sring function of MySQL. This method returns position of the given sub string in…
-
MySQL LEFT() Function LEFT(str,len) is a Sring function of MySQL. This method returns left side ‘len’ characters from the given string ‘str’.…
-
MySQL LENGTH() Function LENGTH(str) is a Sring function of MySQL. This method returns length of the given string ?str? which is measured…
-
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,…