Skip to content

Instantly share code, notes, and snippets.

@guodongxiaren
Last active August 29, 2015 14:05
Show Gist options
  • Save guodongxiaren/be54959e912b59f8a3ef to your computer and use it in GitHub Desktop.
Save guodongxiaren/be54959e912b59f8a3ef to your computer and use it in GitHub Desktop.

通配符

  • [a-z]或[12]:匹配方括号中指定范围内的单个字符或方括号列出的其中一个字符。
  • [!9]:不匹配方括号中所列字符或指定范围内的单个字符。
  • *:匹配的是数量。0个或多个。
  • ?:匹配的是数量。1个。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment