赞
踩
- /**
- * 取出小括号里的内容
- */
- function getParenthesesStr(text) {
- var result = '';
- if (isNull(text))
- return result;
- var regex = /\((.+?)\)/g;
- var options = text.match(regex);
- if (!isNull(options)) {
- var option = options[0]
- if (!isNull(option)) {
- result = option.substring(1, option.length - 1);
- }
- }
- return result;
- }
- /**
- * 取出分号和换行之间的内容
- */
- function getStr(text) {
- var result = '';
- if (isNull(text))
- return result;
- var regex = /\;(.+?)\\n/g;
- var options = text.match(regex);
- if (!isNull(options)) {
- var option = options[0]
- if (!isNull(option)) {
- result = option.substring(1, option.length - 1);
- }
- }
- return result;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。