【发布时间】:2013-02-27 07:09:56
【问题描述】:
我正在尝试将一段 Javascript 转换为 .NET,但我似乎无法完全正确。
这是一个在 Express for NodeJs 中调用的方法。它将/test/:value1/:value2 之类的路径转换为可用于部分 URL 的正则表达式。
/**
* Normalize the given path string,
* returning a regular expression.
*
* An empty array should be passed,
* which will contain the placeholder
* key names. For example "/user/:id" will
* then contain ["id"].
*
* @param {String|RegExp|Array} path
* @param {Array} keys
* @param {Boolean} sensitive
* @param {Boolean} strict
* @return {RegExp}
* @api private
*/
exports.pathRegexp = function(path, keys, sensitive, strict) {
if (path instanceof RegExp) return path;
if (Array.isArray(path)) path = '(' + path.join('|') + ')';
path = path
.concat(strict ? '' : '/?')
.replace(/\/\(/g, '(?:/')
.replace(/(\/)?(\.)?:(\w+)(?:(\(.*?\)))?(\?)?(\*)?/g, function(_, slash, format, key, capture, optional, star){
keys.push({ name: key, optional: !! optional });
slash = slash || '';
return ''
+ (optional ? '' : slash)
+ '(?:'
+ (optional ? slash : '')
+ (format || '') + (capture || (format && '([^/.]+?)' || '([^/]+?)')) + ')'
+ (optional || '')
+ (star ? '(/*)?' : '');
})
.replace(/([\/.])/g, '\\$1')
.replace(/\*/g, '(.*)');
return new RegExp('^' + path + '$', sensitive ? '' : 'i');
}
我尝试将其转换为:
private Regex ConvertPathToRegex(string path, bool strict, out List<string> keys) {
keys = new List<string>();
List<string> tempKeys = new List<string>();
string tempPath = path;
if (strict)
tempPath += "/?";
tempPath = Regex.Replace(tempPath, @"/\/\(", delegate(Match m) {
return "(?:/";
});
tempPath = Regex.Replace(tempPath, @"/(\/)?(\.)?:(\w+)(?:(\(.*?\)))?(\?)?(\*)?", delegate(Match m) {
string slash = (!m.Groups[1].Success) ? "" : m.Groups[1].Value;
bool formatSuccess = m.Groups[2].Success;
string format = (!m.Groups[2].Success) ? "" : m.Groups[2].Value;
string key = m.Groups[3].Value;
bool captureSuccess = m.Groups[4].Success;
string capture = m.Groups[4].Value;
bool optional = m.Groups[5].Success;
bool star = m.Groups[6].Success;
tempKeys.Add(key);
string expression = "/";
expression += (optional ? "" : slash);
expression += "(?:";
expression += (optional ? slash : "");
expression += (formatSuccess ? format : "");
expression += (captureSuccess ? capture : (formatSuccess ? format + "([^/.]+?" : "([^/]+?)")) + ")";
expression += (star ? "(/*)" : "");
return expression;
});
tempPath = Regex.Replace(tempPath, @"/([\/.])", @"\$1");
tempPath = Regex.Replace(tempPath, @"/\*", "(.*)");
tempPath = "^" + tempPath + "$";
keys.AddRange(tempKeys);
return new Regex(tempPath, RegexOptions.Singleline | RegexOptions.IgnoreCase);
}
但问题是,这种方法不能正常工作。由于我不是正则表达式的超级明星,我想知道是否可以在这方面得到一些帮助。
当您还添加 ?param=1 时,该方法不知何故搞砸了。
编辑:当我第一次从路径中剥离查询参数时,它实际上工作得很好。
抱歉,问题的答案是从 URL 中删除查询参数。
【问题讨论】:
-
您能否详细说明“不工作”部分。举个例子吧。顺便说一句,这让我想起了一个老笑话:“我遇到了一个问题,并试图用正则表达式解决它。现在我有两个问题。”
-
您的代码看起来很奇怪。正确地,.NET 正则表达式不需要像 JS 中那样的分隔符
/。
标签: c# javascript regex node.js