
正则表达式
文章平均质量分 79
jmspan
这个作者很懒,什么都没留下…
展开
-
LintCode Url Parser
原题网址:http://www.lintcode.com/en/problem/url-parser/ Parse a html page, extract the Urls in it. Hint: use regex to parse html. Have you met this question in a real interview? Yes原创 2016-06-26 09:25:49 · 1227 阅读 · 0 评论 -
LeetCode 10. Regular Expression Matching(正则表达式匹配)
原题网址:https://leetcode.com/problems/regular-expression-matching/ Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of原创 2016-05-19 05:10:02 · 1522 阅读 · 0 评论 -
LeetCode 44. Wildcard Matching(模糊匹配)
原题网址:https://leetcode.com/problems/wildcard-matching/ Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (原创 2016-05-21 04:07:39 · 2657 阅读 · 0 评论