MySQL POSITION() Function POSITION(substr IN str) is a Sring function of MySQL. This method returns position of the given sub string in…
functions
-
-
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…
-
PHP string Implode() Function PHP implode() is a string function, which joins the array elements in a string. It is a binary-safe…
-
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,…
-
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…
-
PHP String substr_compare() Function The substr_compare() is a built-in function of PHP, which helps to compare the two strings from a specified…
-
PHP String quoted_printable_decode() Function The quoted_printable_decode() function is a built-in function of PHP, which converts a quoted-printable string to an 8-bit string.…
-
Reverse String A string can be reversed either using strrev() function or simple PHP code. For example, on reversing TutorAspire it will…
-
MySQL LCASE() Function LCASE(str) is a Sring function of MySQL. This method returns string in lower case. Syntax select lcase(‘TUTORASPIRE’); Example 1…