早教吧 育儿知识 作业答案 考试题库 百科 知识分享

如何用正则表达式匹配字符串中的单词,比如str='Iamafootballplayer.'匹配结果为['I','am','a','football','player'],

题目详情
如何用正则表达式匹配字符串中的单词,比如 str = 'I am a football player.'
匹配结果为['I','am','a','football','player'],
▼优质解答
答案和解析
\b\w+\b
\b单词边界,\w+匹配单词,直接用\w+也行