Regular expression from JDK 1.4, in case of forgetting.
Construct Matches
Characters
x The character x
\\ The backslash character
\0n The character with octal value 0n (0 <= n <= 7)
\0nn The character with octal value 0nn (0 <= n <= 7)
\0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7)
\xhh The character with hexadecimal value 0xhh
\uhhhh The character with hexadecimal value 0xhhhh
\t The tab character ('\u0009')
\n The newline (line feed) character ('\u000A')
\r The carriage-return character ('\u000D')
\f The form-feed character ('\u000C')
\a The alert (bell) character ('\u0007')
\e The escape character ('\u001B')
\cx The control character corresponding to x
Character classes
[abc] a, b, or c (simple class)
[^abc] Any character except a, b, or c (negation)
[a-zA-Z] a through z or A through Z, inclusive (range)
[a-d[m-p]] a through d, or m through p: [a-dm-p] (union)
[a-z&&[def]] d, e, or f (intersection)
[a-z&&[^bc]] a through z, except for b and c: [ad-z] (subtraction)
[a-z&&[^m-p]] a through z, and not m through p: [a-lq-z](subtraction)
Predefined character classes
. Any character (may or may not match line terminators)
\d A digit: [0-9]
\D A non-digit: [^0-9]
\s A whitespace character: [ \t\n\x0B\f\r]
\S A non-whitespace character: [^\s]
\w A word character: [a-zA-Z_0-9]
\W A non-word character: [^\w]
POSIX character classes (US-ASCII only)
\p{Lower} A lower-case alphabetic character: [a-z]
\p{Upper} An upper-case alphabetic character:[A-Z]
\p{ASCII} All ASCII:[\x00-\x7F]
\p{Alpha} An alphabetic character:[\p{Lower}\p{Upper}]
\p{Digit} A decimal digit: [0-9]
\p{Alnum} An alphanumeric character:[\p{Alpha}\p{Digit}]
\p{Punct} Punctuation: One of !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
\p{Graph} A visible character: [\p{Alnum}\p{Punct}]
\p{Print} A printable character: [\p{Graph}]
\p{Blank} A space or a tab: [ \t]
\p{Cntrl} A control character: [\x00-\x1F\x7F]
\p{XDigit} A hexadecimal digit: [0-9a-fA-F]
\p{Space} A whitespace character: [ \t\n\x0B\f\r]
Classes for Unicode blocks and categories
\p{InGreek} A character in the Greek block (simple block)
\p{Lu} An uppercase letter (simple category)
\p{Sc} A currency symbol
\P{InGreek} Any character except one in the Greek block (negation)
[\p{L}&&[^\p{Lu}]] Any letter except an uppercase letter (subtraction)
Boundary matchers
^ The beginning of a line
$ The end of a line
\b A word boundary
\B A non-word boundary
\A The beginning of the input
\G The end of the previous match
\Z The end of the input but for the final terminator, if any
\z The end of the input
Greedy quantifiers
X? X, once or not at all
X* X, zero or more times
X+ X, one or more times
X{n} X, exactly n times
X{n,} X, at least n times
X{n,m} X, at least n but not more than m times
Reluctant quantifiers
X?? X, once or not at all
X*? X, zero or more times
X+? X, one or more times
X{n}? X, exactly n times
X{n,}? X, at least n times
X{n,m}? X, at least n but not more than m times
Possessive quantifiers
X?+ X, once or not at all
X*+ X, zero or more times
X++ X, one or more times
X{n}+ X, exactly n times
X{n,}+ X, at least n times
X{n,m}+ X, at least n but not more than m times
Logical operators
XY X followed by Y
X|Y Either X or Y
(X) X, as a capturing group
Back references
\n Whatever the nth capturing group matched
Quotation
\ Nothing, but quotes the following character
\Q Nothing, but quotes all characters until \E
\E Nothing, but ends quoting started by \Q
Special constructs (non-capturing)
(?:X) X, as a non-capturing group
(?idmsux-idmsux) Nothing, but turns match flags on - off
(?idmsux-idmsux:X) X, as a non-capturing group with the given flags on - off
(?=X) X, via zero-width positive lookahead
(?!X) X, via zero-width negative lookahead
(?<=X) X, via zero-width positive lookbehind
(?<!X) X, via zero-width negative lookbehind
(?>X) X, as an independent, non-capturing group
references:
http://www.regexlab.com/zh/regref.htm
http://unibetter.com/deerchao/zhengzhe-biaodashi-jiaocheng-se.htm
分享到:
相关推荐
《PyPI上的Python库:aws-solutions-constructs.core-1.60.0详解》 PyPI(Python Package Index)是Python开发者广泛使用的软件包仓库,它为Python社区提供了丰富的第三方库。在PyPI上,我们可以找到各种各样的工具...
《PyPI中的aws-solutions-constructs.aws-s3-lambda-1.55.0:构建AWS S3与Lambda交互的高效解决方案》 在Python的世界里,PyPI(Python Package Index)是开发者们获取和分享Python库的重要平台。这次我们要讨论的...
标题中的“PyPI 官网下载 | aws-solutions-constructs.aws-s3-sqs-1.83.0.tar.gz”表明这是一个从Python Package Index(PyPI)官方源下载的软件包,名为“aws-solutions-constructs.aws-s3-sqs”。这个软件包的版本...
《PyPI中的aws-solutions-constructs.aws-s3-lambda-1.94.0:构建AWS S3与Lambda交互的高效解决方案》 在Python的世界里,PyPI(Python Package Index)是开发者们获取和分享软件包的重要平台。本文将深入探讨PyPI...
《Python库aws-solutions-constructs.aws-sns-sqs-1.69.0:构建AWS SNS到SQS的高效解决方案》 在现代的云计算环境中,开发人员常常需要利用各种服务来构建复杂的系统。Amazon Web Services(AWS)提供了一系列强大...
《PyPI上的Python库:aws-solutions-constructs.aws-lambda-s3-1.54.0.tar.gz详解》 PyPI(Python Package Index)是Python开发者常用的资源库,其中包含了大量的开源Python库,便于开发者们共享和使用。在PyPI上,...
* Summary of regular-expression constructs 正则表达式结构简介: * Construct Matches * Characters 字符: * x The character x x 字符 x * \\ The ...
《Python库aws-solutions-constructs.aws-lambda-s3-1.81.0:构建AWS Lambda与S3集成的高效工具》 在现代云计算环境中,AWS Lambda 和 Amazon S3 是两个极为重要的服务。AWS Lambda 是一种无服务器计算平台,允许...
标题中的“Python库 | aws-solutions-constructs.aws-iot-sqs-1.127.0.tar.gz”指的是一个Python库,它专门用于集成AWS IoT(Amazon Web Services的物联网服务)与SQS(Simple Queue Service)。这个版本是1.127.0,...
资源分类:Python库 所属语言:Python 资源全名:datadog-cdk-constructs-v2-0.2.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源分类:Python库 所属语言:Python 资源全名:cdk-monitoring-constructs-0.0.16.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
《PyPI官网下载:深入解析justinm.cdk-constructs-0.1.0.tar.gz》 在Python开发中,PyPI(Python Package Index)是最重要的资源库,它为全球开发者提供了海量的第三方库,方便了代码复用和项目构建。本文将详细...
资源分类:Python库 所属语言:Python 资源全名:aws-solutions-constructs.aws-s3-lambda-1.73.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
案例研究理论文献
资源分类:Python库 所属语言:Python 资源全名:cdk-datalake-constructs-0.0.22.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
yarn add --dev datadog-cdk-constructs # or npm install datadog-cdk-constructs --save-dev 用法 AWS CDK 导入datadog-cdk-constructs。 打字稿 import * as cdk from "@aws-cdk/core" ; import { Datadog } ...
测试构造 用于测试目的JavaScript对象和数组。 正在安装 npm install --save-dev test-constructs 快速开始 const tc = require ( 'test-constructs' ) ...= An array of strings console . log ( tc . arrays . types
资源分类:Python库 所属语言:Python 资源全名:aws-solutions-constructs.aws-sns-sqs-1.61.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源分类:Python库 所属语言:Python 资源全名:aws-solutions-constructs.core-1.138.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
MAD团队的"cdk-constructs-main"可能包含了团队的核心构造库,这些构造可以直接在项目中导入和使用,减少了重复工作,提高了开发效率。通过共享和复用这些构造,团队能够快速构建符合其特定需求的云环境,同时保持...