使用叫Javascript或者c#编写正则表达式函数对文本文件进行搜索
使用叫Javascript或者c#编写正则表达式函数对文本文件进行搜索要求:1.使用任何编程语言中正则表达式函数或函数库,编写程序对于给定的文件进行识别;2.统计文件中所...
使用叫Javascript或者c#编写正则表达式函数对文本文件进行搜索
要求:
1. 使用任何编程语言中正则表达式函数或函数库,编写程序对于给定的文件进行识别;
2. 统计文件中所有英文单词的数量,符号、空格、数字不再识别范围之内;
3. 可以改变规则得出不同的结果。
示例文本:
Now
is the time
for all good-men
to come to the-
aid of -their
party. NOW IS THE TIME FOR all Good men to
come to the AID of their party. party-their now-is time-the-for all-good
men to -come aid of party a&b%c*(d)
a1b2c3d4-
a
b
b c defg
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled?
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled2?
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled3?
!"?%^&*()
示例结果:
a: 3
aid: 3
all: 3
b: 4
c: 3
come: 3
d: 2
defg: 1
for: 3
good: 3
is: 3
men: 3
now: 3
of: 3
party: 4
the: 5
their: 3
thisisaverylongwordwithnospacesbetweenthewordsandhowwillitbehandled: 3
time: 3
to: 5
大神有结果了,请发到我的邮箱里,谢谢了。
pl02206984@126.com 展开
要求:
1. 使用任何编程语言中正则表达式函数或函数库,编写程序对于给定的文件进行识别;
2. 统计文件中所有英文单词的数量,符号、空格、数字不再识别范围之内;
3. 可以改变规则得出不同的结果。
示例文本:
Now
is the time
for all good-men
to come to the-
aid of -their
party. NOW IS THE TIME FOR all Good men to
come to the AID of their party. party-their now-is time-the-for all-good
men to -come aid of party a&b%c*(d)
a1b2c3d4-
a
b
b c defg
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled?
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled2?
thisisaverylongWORDwithnospacesbetweenthewordsandhowwillitbehandled3?
!"?%^&*()
示例结果:
a: 3
aid: 3
all: 3
b: 4
c: 3
come: 3
d: 2
defg: 1
for: 3
good: 3
is: 3
men: 3
now: 3
of: 3
party: 4
the: 5
their: 3
thisisaverylongwordwithnospacesbetweenthewordsandhowwillitbehandled: 3
time: 3
to: 5
大神有结果了,请发到我的邮箱里,谢谢了。
pl02206984@126.com 展开
3个回答
展开全部
这种问题,我觉得在侮辱回答者,你当别人是你的免费劳动力吗?
你的问题不是上学用的就是面试工作用的,你没这个本事,让别人替你回答了有什么用?
有这个本事,你自己不做,让别人帮你做,算是无耻吗?
你要是想学,就问点自己解决不了问题时,遇到的难点,你要不想学,就别再发这种问题恶心别人了。
你的问题不是上学用的就是面试工作用的,你没这个本事,让别人替你回答了有什么用?
有这个本事,你自己不做,让别人帮你做,算是无耻吗?
你要是想学,就问点自己解决不了问题时,遇到的难点,你要不想学,就别再发这种问题恶心别人了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要数量,
首先把整个文件作为一个字符串,然后转换成char
然后用char匹配
c#里, char.IsLetterOrDigit
非要正则,也可以。
^[a-zA-Z]$
然后匹配吧
首先把整个文件作为一个字符串,然后转换成char
然后用char匹配
c#里, char.IsLetterOrDigit
非要正则,也可以。
^[a-zA-Z]$
然后匹配吧
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
(\w+)
就可以了,我也同意楼上yangjbtao的话,工作以后拼的是真本事的
就可以了,我也同意楼上yangjbtao的话,工作以后拼的是真本事的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询