由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 大牛们帮我看道很简单的regex题吧!
相关主题
电话及onsite面试的一些小提示error of importing data from txt file to IBM netezza SQL database
amazon电面为啥要念程序?遇到一道Take home exam,题意描述很模糊,请问正常吗?
ASCII字符发音总结George Hotz 拿了 Andreessen Horowitz 3.1M funding
问题:从电话号码打出所有单词问一道面试题目
发几个Javascript面试题刚刚amazon 2nd phone interview
Amazon 电面面经facebook技术第三面面经 + 请前辈们分享一些onsite经验谢谢
租房网电面一题问个amazon的题,关于url的提取
面试 Expectation 问题请问一下 regular expression怎么复习啊?
相关话题的讨论汇总
话题: regex话题: 06901话题: stamford话题: match话题: ct
进入JobHunting版参与讨论
1 (共1页)
t******7
发帖数: 396
1
REGEX
1.Use one REGEX to match the last line of any US address
Must be able to match all 4 examples below
Must be able to match with or without the comma.
Ex: Stamford, CT 06901
Stamford, Connecticut 06901
Stamford, CT 06901-2064
Stamford, Connecticut 06901-2064
2.For each date example below, use a REGEX to match the format:
Tue, 10 Dec 2012 19:45:45
2012年12月10日
r**********g
发帖数: 22734
2
^(\w+\s*)+\,?\s*\w\w+\s+\d\d\d\d\d(-\d\d\d\d)? : \d{5} may not be
supported by all regex libs
第二个自己看着写吧

【在 t******7 的大作中提到】
: REGEX
: 1.Use one REGEX to match the last line of any US address
: Must be able to match all 4 examples below
: Must be able to match with or without the comma.
: Ex: Stamford, CT 06901
: Stamford, Connecticut 06901
: Stamford, CT 06901-2064
: Stamford, Connecticut 06901-2064
: 2.For each date example below, use a REGEX to match the format:
: Tue, 10 Dec 2012 19:45:45

t******7
发帖数: 396
3
大哥,我对regex一窍不通。

【在 r**********g 的大作中提到】
: ^(\w+\s*)+\,?\s*\w\w+\s+\d\d\d\d\d(-\d\d\d\d)? : \d{5} may not be
: supported by all regex libs
: 第二个自己看着写吧

r**********g
发帖数: 22734
4
一窍不通就学啊,不然我写了你也看不懂……

【在 t******7 的大作中提到】
: 大哥,我对regex一窍不通。
1 (共1页)
进入JobHunting版参与讨论
相关主题
请问一下 regular expression怎么复习啊?发几个Javascript面试题
请问大家准备面试的时候,一定要会用grep吗?Amazon 电面面经
regex matching algorithm租房网电面一题
Amazon电面 (面经)面试 Expectation 问题
电话及onsite面试的一些小提示error of importing data from txt file to IBM netezza SQL database
amazon电面为啥要念程序?遇到一道Take home exam,题意描述很模糊,请问正常吗?
ASCII字符发音总结George Hotz 拿了 Andreessen Horowitz 3.1M funding
问题:从电话号码打出所有单词问一道面试题目
相关话题的讨论汇总
话题: regex话题: 06901话题: stamford话题: match话题: ct