我对这个正则表达式问题有点困扰,我需要检查 url 是否在mongodb://
字符串的开头和结尾有数字 - 端口:27017
是否有 slash /
。
例如:
/myRegexForThis/.test('mongodb://testUrl:port') => true
/myRegexForThis/.test('mongodb://testUrl:port/') => false
/myRegexForThis/.test('mongo://testUrl') => false
/myRegexForThis/.test('mongodb://testUrl:port') => false
目前我只有开始部分:^(mongodb:\/\/)