Home  >  Article  >  Java  >  Java Example - String Comparison

Java Example - String Comparison

黄舟
黄舟Original
2017-02-21 09:54:311497browse

In the following example, we use the string functions compareTo (string), compareToIgnoreCase(String) and compareTo(object string) to compare two strings and return the ASCII difference of the first letter in the string.

The example code is as follows:

//StringCompareEmp.java 文件public class StringCompareEmp{
   public static void main(String args[]){
      String str = "Hello World";
      String anotherString = "hello world";
      Object objStr = str;

      System.out.println( str.compareTo(anotherString) );
      System.out.println( str.compareToIgnoreCase(anotherString) );  //忽略大小写
      System.out.println( str.compareTo(objStr.toString()));
   }}

The output result of the above code example is:

-32
0
0

The above is the Java example - the content of string comparison, more For related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn