问题
我在使用正则表达式时遇到问题。
我有一组字符串。
示例字符串
@param* URL url './' an absolute URL giving the base location of the image
@param* Function callback callback(indexInArray, valueOfElement) The function that will be executed on every object.
@param Function callback Null The function that will be executed when the image is clicked
@param String name 'this is a test name' the name to use when displaying the image
@param String name "this is a test name" the name to use when displaying the image
我将它们拆分在新行上,以给我单独的字符串。
var match = val.split("\n");
这些字符串中的每一个都可以分解为五个值:
变量
例子:@param Function callback Null The function that will be executed when the image is clicked
@param = required;
Function = type;
callback = name;
Null = default;
The function that will be executed when the image is clicked = description.
我需要的是考虑到所有不同的字符串可能性,将这个字符串分解成各个部分,我很难创建可以拆分所有不同默认值和描述可能性的正则表达式。
当 defaultValue 是双引号或单引号中的字符串或函数表示法时,我在尝试获取 defaultValue 时遇到了特殊问题。
代码
这是我当前的工作代码;
$.each(match, function(index, value) {
var part = value.split(/\s/); //TODO need a regx to split this string correctly
var required = part[0];
var type = part[1];
var name = part[2];
var defaultValue = part[3];
var description = part[4];
});
概括
我需要一个单步或多步正则表达式,可以将上述所有五个示例分解为相同的五个变量。
编辑:我很抱歉没有尝试正则表达式,但我不知道从哪里开始。