Java Interpreter Java is a platform-independent programming language. It means that we can run Java on the platforms that have a Java…
examples
-
-
Java Email Validation In designing forms, email plays an important role. The email can be of our username or login id. An…
-
Java SHA SHA is an abbreviation for Secure Hash Algorithm. In Java SHA and is one of the most prevalent cryptographic hash…
-
How to Remove Last Character from String in Java In Java, there are mainly three classes related to the String. The classes…
-
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,…
-
Types of Classes in Java In Java, the class is a blueprint from which we can create an individual object. Java provides…
-
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…