IgnoreCaseSort

本文介绍了一种在Java中实现的忽略大小写差异的字符串排序方法。通过创建自定义Comparator来实现字符串的不区分大小写的比较,并展示了如何使用该Comparator对字符串数组进行排序。此外,还对比了默认排序(区分大小写)与忽略大小写的排序结果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

/**
 * Sort an array of strings, ignore case difference.
 */
package StrRegex;

import java.util.*;

/**
 * Create a Comparator that returns the outcome
 * of a case-insensitive string comparison.
 */
class IgnoreCaseComp implements Comparator< String > {
	
	/**
	 * Implement the compare() method so that it
	 * ignore case differences when comparing strings.
	 */
	public int compare(String strA, String strB) {
		return strA.compareToIgnoreCase(strB);
	}
}

/**
 * Demonstrate the case-insensitive string comparator.
 */
public class IgnoreCaseSort {

	/**
	 * @param args
	 */
	public static void main(String[] args) {

		// Create a sample array of strings.
		String strs[] = { "alpha", "Gamma", "Zeta", "beta" };
		
		// Show the initial order.
		System.out.print("Initial order : ");
		for (String s : strs) {
			System.out.print(s + " ");
		}
		
		System.out.println("\n");
		
		// Sort the array, but ignore case differences.
		// Create a case-insensitive string comparator.
		IgnoreCaseComp icc = new IgnoreCaseComp();
		
		// Sort the strings using the comparator.
		Arrays.sort(strs, icc);
		
		// Show the case-insensitive sorted order.
		System.out.print("Case-insensitive sorted order : ");
		for (String s : strs) {
			System.out.print(s + " ");
		}
		
		System.out.println("\n");
		
		// For comparison, sort the strings using the default order,
		// which is case-sensitive.
		Arrays.sort(strs);
		
		// Show the case-sensitive sorted order.
		System.out.print("Default, case-sensitive sorted order : ");
		for (String s : strs) {
			System.out.print(s + " ");
		}
		
		System.out.println("\n");
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值