目前,我正在使用RegExp (?:\(\) => (.*)|return (.*);)
作为自定义nameof
函数,其调用方式如下:nameof(() => myVariable)
。根据执行情况,尽管lambda被转换为包含return myVariable;
部分的内容,因此我需要一个替代分支来查找return
。
转换后的输出格式为()=>{cov_26zslv4jy3.f[9]++;cov_26zslv4jy3.s[38]++;return options.type;}
。
示例如下:
// should return "foo"
() => foo
// should return "foo.bar"
() => foo.bar
// should return "options.type"
()=>{cov_26zslv4jy3.f[9]++;cov_26zslv4jy3.s[38]++;return options.type;}
我当前的RegExp有效,但它有两个匹配的组,具体取决于lambda是否被转换的类型。是否可以重写表达式,以便我有一个包含名称的匹配组?
有关详细信息,我附上了我的函数的完整代码:
const nameofValidator: RegExp = new RegExp(/(?:\(\) => (.*)|return (.*);)/);
/**
* Used to obtain the simple (unqualified) string name of a variable.
* @param lambda A lambda expression of the form `() => variable` which should be resolved.
*/
export function nameof<TAny>(lambda: () => TAny): string {
const stringifiedLambda: string = String(lambda);
const matches: RegExpExecArray | null = nameofValidator.exec(stringifiedLambda);
if (matches === null) {
throw new ArgumentException("Lambda expression must be of the form `() => variable'.", nameof(() => lambda));
}
if (matches[1] !== undefined) {
return matches[1];
}
if (matches[2] !== undefined) {
return matches[2];
}
throw new ArgumentException("Lambda expression must be of the form `() => variable'.", nameof(() => lambda));
}
答案 0 :(得分:0)
您可以使用:
(?:\(\) =>|.*return) ([^;\r\n]*)
如果未找到交替的第一侧,则引擎尝试第二侧。如果我们知道一个条件应该随时满足引擎,贪婪的点.*
将使它更早发生。您也可能需要^
锚点。
还有第二种方法:
\(\) *=>.* ([^;\r\n]+)