Regex Learning I

Regex Meta Symbol
  • . 代表任意字符
  • / 转义符号
  • [] 范围符号
  • - 从...到...的范围
  • ^ 反意字符,即除了...以外
  • * 大于等于0个字符
  • + 大于等于1个字符
Javascript For Regex
  • Replace Regex String.replace(/[Regex Express]/g, "[Replace string]")
Regular Expression For Common Problem
  • Html Tag <[^>]*>
  • HH:Min ^(20|21|22|23|[0-1]?\d):[0-5]?\d$
posted @ 2005-10-04 18:50  笑语  阅读(325)  评论(0编辑  收藏  举报