常见对象_正则表达式的分割功能

package cn.itcast_03;

import java.util.Scanner;

/*
 * 分割功能
 * 		String类的public String[] split(String regex)
 * 		根据给定正则表达式的匹配拆分此字符串。
 * 
 * 举例:
 * 		百合网,世纪佳缘,珍爱网,QQ
 * 		搜索好友
 * 			性名:女
 * 			范围:18-24
 * 		age>=18 && age<=24
 */
public class RegexDemo {
	public static void main(String[] args) {
		// 定义一个年龄搜索范围
		String ages = "18-24";

		// 定义规则
		String regex = "-";

		// 调用方法
		String[] strArray = ages.split(regex);

		// 遍历
		// for(int x = 0;x= startAge && age <= endAge) {
			System.out.println("你就是我想找的");
		} else {
			System.out.println("你不符合我的要求,gun");
		}
	}
}

你可能感兴趣的:(Java,常见对象,Regex)