正则表达式 \\p{javaUpperCase} 的作用

作用

匹配任何大写字母

代码

public class Test {

    private static final String REGEX = "\\p{javaUpperCase}";
    private static final String INPUT = "Bb1C2 \tc!";
    
    public static void main(String[] args) {
        // create a pattern
        Pattern pattern = Pattern.compile(REGEX);
        // get a matcher object
        Matcher matcher = pattern.matcher(INPUT);
        while (matcher.find()) {
            //Prints the start index of the match.
            System.out.println("Match String start(): " + matcher.start());
        }
    }
}

结果

Match String start(): 0
Match String start(): 3

用法

import java.util.Set;
import javax.validation.ConstraintViolation;
import javax.validation.ConstraintViolationException;
import javax.validation.Validator;

/**
 * Bean 工具类
 * 
 * @author ruoyi
 */
public class BeanUtils extends org.springframework.beans.BeanUtils
{
    /** Bean方法名中属性名开始的下标 */
    private static final int BEAN_METHOD_PROP_INDEX = 3;

    /** * 匹配getter方法的正则表达式 */
    private static final Pattern GET_PATTERN = Pattern.compile("get(\\p{javaUpperCase}\\w*)");

    /** * 匹配setter方法的正则表达式 */
    private static final Pattern SET_PATTERN = Pattern.compile("set(\\p{javaUpperCase}\\w*)");

    /**
     * 获取对象的setter方法。
     * 
     * @param obj 对象
     * @return 对象的setter方法列表
     */
    public static List<Method> getSetterMethods(Object obj)
    {
        // setter方法列表
        List<Method> setterMethods = new ArrayList<Method>();

        // 获取所有方法
        Method[] methods = obj.getClass().getMethods();

        // 查找setter方法

        for (Method method : methods)
        {
            Matcher m = SET_PATTERN.matcher(method.getName());
            if (m.matches() && (method.getParameterTypes().length == 1))
            {
                setterMethods.add(method);
            }
        }
        // 返回setter方法列表
        return setterMethods;
    }

    /**
     * 获取对象的getter方法。
     * 
     * @param obj 对象
     * @return 对象的getter方法列表
     */

    public static List<Method> getGetterMethods(Object obj)
    {
        // getter方法列表
        List<Method> getterMethods = new ArrayList<Method>();
        // 获取所有方法
        Method[] methods = obj.getClass().getMethods();
        // 查找getter方法
        for (Method method : methods)
        {
            Matcher m = GET_PATTERN.matcher(method.getName());
            if (m.matches() && (method.getParameterTypes().length == 0))
            {
                getterMethods.add(method);
            }
        }
        // 返回getter方法列表
        return getterMethods;
    }
}

拓展 \p{javaLowerCase}

// 作用:匹配所有小写字母
// 结果:
// Match String start(): 1
// Match String start(): 7
public class Test {
    private static final String REGEX = "\\p{javaLowerCase}";
    private static final String INPUT = "Bb1C2 \tc!";

    public static void main(String[] args) {
        // create a pattern
        Pattern pattern = Pattern.compile(REGEX);
        // get a matcher object
        Matcher matcher = pattern.matcher(INPUT);
        while (matcher.find()) {
            //Prints the start index of the match.
            System.out.println("Match String start(): " + matcher.start());
        }
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值