基础库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789
  1. // extension RegString on String {
  2. // // 正则匹配获取基础url,返回如:https://www.xyz.com
  3. // String getBaseUrl() {
  4. // RegExp exp = new RegExp(
  5. // "^((http://)|(https://))?([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}(/)");
  6. //
  7. // return exp.stringMatch(this);
  8. // }
  9. // }