在查找字符串中是否包含字符AB或BA,则应该构造正则表达式( )
举一反三
- 在查找字符串中是否包含字符AB或BA,则应该构造正则表达式()。 A.AB或BA B.BA或AB C.AB+BA D.AB|BA A: A B: B C: C D: D
- 在查找字符串中是否包含A1、A2或“China”,则应该构造正则表达式( )
- 在查找字符串中是否包含A1、A2或“China”,则应该构造正则表达式( ) A: China|A B: A[1-9] C: China D: A1|A2|China
- 在字符串China is our country. I love it中查找 our ,则应该构造正则表达式s+ours+
- 使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。 A: 字符串"helloworld"中不包含G字符,indexOf返回0 B: 字符串"helloworld"中不包含G字符,indexOf返回null C: 字符串"helloworld"中不包含G字符,indexOf返回-1 D: 字符串"helloworld"中不包含G字符,indexOf返回1