能够完全匹配字符串“back”和“back-end”的正则表达式包括A.“w{4}-w{3}|w{4}”B.“w{4}|w{4}-w{3}”C.“S+-S+|S+”D.“w*b-bw*|w*”
能够完全匹配字符串“back”和“back-end”的正则表达式包括
A.“w{4}-w{3}|w{4}”
B.“w{4}|w{4}-w{3}”
C.“S+-S+|S+”
D.“w*b-bw*|w*”
参考答案和解析
“\w{4}-\w{3}|\w{4}”;“\S+-\S+|\S+”;“\w*\b-\b\w*|\w*”
相关考题:
正则表达式模块re的match()方法是从字符串的开始匹配特定模式,而search()方法是在整个字符串中寻找模式,这两个方法如果匹配成功则返回match对象,匹配失败则返回空值None。此题为判断题(对,错)。
以下关于正则表达式的说法,不正确的是()。 A、正则表达式是对字符串操作的一种逻辑公式B、正则表达式是一种文本模式,模式描述在搜索文本时要匹配的一个或多个字符串C、主流开发语言C++、Java均不支持正则表达式D、正则表达式的使用非常灵活性,逻辑性和功能性非常强
下列关于正则表达式中“.*”这个表达式的说法正确的是:()A、在正则表达式中,“.*”可以用来匹配一个任意长度(包括长度为0)的字符串B、“.*”是贪婪匹配,过度运用会造成运算资源的极大消耗,所以应该尽量避免使用C、“.*”是普适性匹配,容错率高,使用简便,适合在正则表达式中大量使用D、“^/category”和“^/category.*”这两个表达式匹配出来的结果是一样的E、“.*”不能匹配到所有字符
关于以下两种陈述,说法正确的是?()陈述1:RegExp的search(str)方法返回字符串中与正则表达式相匹配的字串的位置陈述2:String的test(str)方法用于测试字符串是否与正则表达式相匹配。A、陈述1正确,陈述2错误B、陈述1错误,陈述2正确C、两种陈述都正确D、两种陈述都错误
下面哪个方法能判断字符串中是否存在和指定正则表达式匹配的字符串;是则返回true,否则返回false:()A、RegExp 对象的 test()方法B、RegExp 对象的 exec()方法C、String 对象的 search()方法D、String 对象的 match()方法
单选题You need to design access to Microsoft Outlook Web Access for remote users. What should you do?()APlace all user mailboxes on back-end servers. Deploy Outlook Web Access on three front-end servers that are members of the Network Load Balancing clusterBPlace all user mailboxes on back-end servers that are members of a Network Load Balancing cluster. Deploy Outlook Web Access on the back-end serversCPlace mailboxes for remote users on one back-end server and place all mailboxes for main office users on another back-end server. Deploy Outlook Web Access on the back-end server that contains the mailboxes for remote usersDPlace all user mailboxes on two back-end servers that are members of a Network Load Balancing cluster. Place mailboxes for remote users and mailboxes for main office users into separate storage groups. Deploy Outlook Web Access on three front-end servers. Configure the front-end servers to access only the back-end Network Load Balancing cluster
判断题正则表达式对象的match()方法可以在字符串的指定位置开始进行指定模式的匹配。A对B错