• 备忘:js正则表达式中的元字符


    Predefined term Matches
    Horizontal tab
     Backspace
    v Vertical tab
    f Form feed
    Carriage return
    Newline
    cA : cZ Control characters
    x0000 : xFFFF Unicode hexadecimal
    x00 : xFF ASCII hexadecimal
    . Any character, except for newline ( )
    d Any decimal digit; equivalent to [0-9]
    D Any character but a decimal digit; equivalent to [^0-9]
    w Any alphanumeric character including underscore; equivalent to [A-Za-z0-9_]
    W Any character but alphanumeric and underscore characters; equivalent to [^A-Za-z0-9_]
    s Any whitespace character (space, tab, form feed, and so on)
    S Any character but a whitespace character
     A word boundary
    B Not a word boundary (inside a word)
  • 相关阅读:
    springboot对JPA的支持
    Hibernate-什么是orm思想
    利用Struts拦截器完成文件上传功能
    Struts2的CRUD
    struts2的初步认识
    Maven搭建
    java虚拟机
    Map集合
    Set集合(TreeSet)
    Set集合的
  • 原文地址:https://www.cnblogs.com/undefined000/p/5450313.html
Copyright © 2020-2023  润新知