当前位置:   article > 正文

正则表达式取出特定符号中的字符串_正则表达式提取字符串中的特定字符串

正则表达式提取字符串中的特定字符串

本文列举了利用正则表达式匹配字符串,取出该字符串中想要的内容

1、取出小括号里的内容

  1. /**
  2. * 取出小括号里的内容
  3. */
  4. function getParenthesesStr(text) {
  5. var result = '';
  6. if (isNull(text))
  7. return result;
  8. var regex = /\((.+?)\)/g;
  9. var options = text.match(regex);
  10. if (!isNull(options)) {
  11. var option = options[0]
  12. if (!isNull(option)) {
  13. result = option.substring(1, option.length - 1);
  14. }
  15. }
  16. return result;
  17. }

2、取出分号和换行之间的内容

  1. /**
  2. * 取出分号和换行之间的内容
  3. */
  4. function getStr(text) {
  5. var result = '';
  6. if (isNull(text))
  7. return result;
  8. var regex = /\;(.+?)\\n/g;
  9. var options = text.match(regex);
  10. if (!isNull(options)) {
  11. var option = options[0]
  12. if (!isNull(option)) {
  13. result = option.substring(1, option.length - 1);
  14. }
  15. }
  16. return result;
  17. }

在使用过程中,可根据你指定的匹配字符进行更改正则表达式

如有问题,欢迎评论区留言~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/113482
推荐阅读
相关标签
  

闽ICP备14008679号