国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

XRegExp0.2:NowWithNamedCapture_js面向?qū)ο?/h1>
來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 20:38:15
文檔

XRegExp0.2:NowWithNamedCapture_js面向?qū)ο?/h4>
XRegExp0.2:NowWithNamedCapture_js面向?qū)ο? Update: A beta version of XRegExp 0.3 is now available as part of the RegexPal download package. JavaScript's regular expression flavor doesn't support named capture. Well, says who XRegExp 0.2 brings named capture support, along with se
推薦度:

導(dǎo)讀XRegExp0.2:NowWithNamedCapture_js面向?qū)ο? Update: A beta version of XRegExp 0.3 is now available as part of the RegexPal download package. JavaScript's regular expression flavor doesn't support named capture. Well, says who XRegExp 0.2 brings named capture support, along with se

Update: A beta version of XRegExp 0.3 is now available as part of the RegexPal download package.

JavaScript's regular expression flavor doesn't support named capture. Well, says who? XRegExp 0.2 brings named capture support, along with several other new features. But first of all, if you haven't seen the previous version, make sure to check out my post on XRegExp 0.1, because not all of the documentation is repeated below.

Highlights

  • Comprehensive named capture support (New)
  • Supports regex literals through the addFlags method (New)
  • Free-spacing and comments mode (x)
  • Dot matches all mode (s)
  • Several other minor improvements over v0.1
  • Named capture

    There are several different syntaxes in the wild for named capture. I've compiled the following table based on my understanding of the regex support of the libraries in question. XRegExp's syntax is included at the top.

    Library Capture Backreference In replacement Stored at
    XRegExp (…) \k ${name} result.name
    .NET (?…)
    (?'name'…)
    \k
    \k'name'
    ${name} Matcher.Groups('name')
    Perl 5.10 (beta) (?…)
    (?'name'…)
    \k
    \k'name'
    \g{name}
    $+{name} ??
    Python (?P…) (?P=name) \g result.group('name')
    PHP preg (PCRE) (.NET, Perl, and Python styles) $regs['name'] $result['name']

    No other major regex library currently supports named capture, although the JGsoft engine (used by products like RegexBuddy) supports both .NET and Python syntax. XRegExp does not use a question mark at the beginning of a named capturing group because that would prevent it from being used in regex literals (JavaScript would immediately throw an "invalid quantifier" error).

    XRegExp supports named capture on an on-request basis. You can add named capture support to any regex though the use of the new "k" flag. This is done for compatibility reasons and to ensure that regex compilation time remains as fast as possible in all situations.

    Following are several examples of using named capture:

    // Add named capture support using the XRegExp constructor
    var repeatedWords = new XRegExp("\\b ( \\w+ ) \\s+ \\k \\b", "gixk");
    
    // Add named capture support using RegExp, after overriding the native constructor
    XRegExp.overrideNative();
    var repeatedWords = new RegExp("\\b ( \\w+ ) \\s+ \\k \\b", "gixk");
    
    // Add named capture support to a regex literal
    var repeatedWords = /\b ( \w+ ) \s+ \k \b/.addFlags("gixk");
    
    var data = "The the test data.";
    
    // Check if data contains repeated words
    var hasDuplicates = repeatedWords.test(data);
    // hasDuplicates: true
    
    // Use the regex to remove repeated words
    var output = data.replace(repeatedWords, "${word}");
    // output: "The test data."
    

    In the above code, I've also used the x flag provided by XRegExp, to improve readability. Note that the addFlags method can be called multiple times on the same regex (e.g., /pattern/g.addFlags("k").addFlags("s")), but I'd recommend adding all flags in one shot, for efficiency.

    Here are a few more examples of using named capture, with an overly simplistic URL-matching regex (for comprehensive URL parsing, see parseUri):

    var url = "http://microsoft.com/path/to/file?q=1";
    var urlParser = new XRegExp("^([^:/?]+)://([^/?]*)([^?]*)\\?(.*)", "k");
    var parts = urlParser.exec(url);
    /* The result:
    parts.protocol: "http"
    parts.host: "microsoft.com"
    parts.path: "/path/to/file"
    parts.query: "q=1" */
    
    // Named backreferences are also available in replace() callback functions as properties of the first argument
    var newUrl = url.replace(urlParser, function(match){
    	return match.replace(match.host, "yahoo.com");
    });
    // newUrl: "http://yahoo.com/path/to/file?q=1"
    
    

    Note that XRegExp's named capture functionality does not support deprecated JavaScript features including the lastMatch property of the global RegExp object and the RegExp.prototype.compile() method.

    Singleline (s) and extended (x) modes

    The other non-native flags XRegExp supports are s (singleline) for "dot matches all" mode, and x (extended) for "free-spacing and comments" mode. For full details about these modifiers, see the FAQ in my XRegExp 0.1 post. However, one difference from the previous version is that XRegExp 0.2, when using the x flag, now allows whitespace between a regex token and its quantifier (quantifiers are, e.g., +, *?, or {1,3}). Although the previous version's handling/limitation in this regard was documented, it was atypical compared to other regex libraries. This has been fixed.

    The code

    /* XRegExp 0.2.2; MIT License
    By Steven Levithan 
    ----------
    Adds support for the following regular expression features:
    - Free-spacing and comments ("x" flag)
    - Dot matches all ("s" flag)
    - Named capture ("k" flag)
     - Capture: (...)
     - Backreference: \k
     - In replacement: ${name}
     - Stored at: result.name
    */
    
    /* Protect this from running more than once, which would break its references to native functions */
    if (window.XRegExp === undefined) {
    	var XRegExp;
    	
    	(function () {
    	var native = {
    	RegExp: RegExp,
    	exec: RegExp.prototype.exec,
    	match: String.prototype.match,
    	replace: String.prototype.replace
    	};
    	
    	XRegExp = function (pattern, flags) {
    	return native.RegExp(pattern).addFlags(flags);
    	};
    	
    	RegExp.prototype.addFlags = function (flags) {
    	var pattern = this.source,
    	useNamedCapture = false,
    	re = XRegExp._re;
    	
    	flags = (flags || "") + native.replace.call(this.toString(), /^[\S\s]+\//, "");
    	
    	if (flags.indexOf("x") > -1) {
    	pattern = native.replace.call(pattern, re.extended, function ($0, $1, $2) {
    	return $1 ? ($2 ? $2 : "(?:)") : $0;
    	});
    	}
    	
    	if (flags.indexOf("k") > -1) {
    	var captureNames = [];
    	pattern = native.replace.call(pattern, re.capturingGroup, function ($0, $1) {
    	if (/^\((?!\?)/.test($0)) {
    	if ($1) useNamedCapture = true;
    	captureNames.push($1 || null);
    	return "(";
    	} else {
    	return $0;
    	}
    	});
    	if (useNamedCapture) {
    	/* Replace named with numbered backreferences */
    	pattern = native.replace.call(pattern, re.namedBackreference, function ($0, $1, $2) {
    	var index = $1 ? captureNames.indexOf($1) : -1;
    	return index > -1 ? "\\" + (index + 1).toString() + ($2 ? "(?:)" + $2 : "") : $0;
    	});
    	}
    	}
    	
    	/* If "]" is the leading character in a character class, replace it with "\]" for consistent
    	cross-browser handling. This is needed to maintain correctness without the aid of browser sniffing
    	when constructing the regexes which deal with character classes. They treat a leading "]" within a
    	character class as a non-terminating, literal character, which is consistent with IE, .NET, Perl,
    	PCRE, Python, Ruby, JGsoft, and most other regex engines. */
    	pattern = native.replace.call(pattern, re.characterClass, function ($0, $1) {
    	/* This second regex is only run when a leading "]" exists in the character class */
    	return $1 ? native.replace.call($0, /^(\[\^?)]/, "$1\\]") : $0;
    	});
    	
    	if (flags.indexOf("s") > -1) {
    	pattern = native.replace.call(pattern, re.singleline, function ($0) {
    	return $0 === "." ? "[\\S\\s]" : $0;
    	});
    	}
    	
    	var regex = native.RegExp(pattern, native.replace.call(flags, /[sxk]+/g, ""));
    	
    	if (useNamedCapture) {
    	regex._captureNames = captureNames;
    	/* Preserve capture names if adding flags to a regex which has already run through addFlags("k") */
    	} else if (this._captureNames) {
    	regex._captureNames = this._captureNames.valueOf();
    	}
    	
    	return regex;
    	};
    	
    	String.prototype.replace = function (search, replacement) {
    	/* If search is not a regex which uses named capturing groups, just run the native replace method */
    	if (!(search instanceof native.RegExp && search._captureNames)) {
    	return native.replace.apply(this, arguments);
    	}
    	
    	if (typeof replacement === "function") {
    	return native.replace.call(this, search, function () {
    	/* Convert arguments[0] from a string primitive to a string object which can store properties */
    	arguments[0] = new String(arguments[0]);
    	/* Store named backreferences on the first argument before calling replacement */
    	for (var i = 0; i < search._captureNames.length; i++) {
    	if (search._captureNames[i]) arguments[0][search._captureNames[i]] = arguments[i + 1];
    	}
    	return replacement.apply(window, arguments);
    	});
    	} else {
    	return native.replace.call(this, search, function () {
    	var args = arguments;
    	return native.replace.call(replacement, XRegExp._re.replacementVariable, function ($0, $1, $2) {
    	/* Numbered backreference or special variable */
    	if ($1) {
    	switch ($1) {
    	case "$": return "$";
    	case "&": return args[0];
    	case "`": return args[args.length - 1].substring(0, args[args.length - 2]);
    	case "'": return args[args.length - 1].substring(args[args.length - 2] + args[0].length);
    	/* Numbered backreference */
    	default:
    	/* What does "$10" mean?
    	- Backreference 10, if at least 10 capturing groups exist
    	- Backreference 1 followed by "0", if at least one capturing group exists
    	- Else, it's the string "$10" */
    	var literalNumbers = "";
    	$1 = +$1; /* Cheap type-conversion */
    	while ($1 > search._captureNames.length) {
    	literalNumbers = $1.toString().match(/\d$/)[0] + literalNumbers;
    	$1 = Math.floor($1 / 10); /* Drop the last digit */
    	}
    	return ($1 ? args[$1] : "$") + literalNumbers;
    	}
    	/* Named backreference */
    	} else if ($2) {
    	/* What does "${name}" mean?
    	- Backreference to named capture "name", if it exists
    	- Else, it's the string "${name}" */
    	var index = search._captureNames.indexOf($2);
    	return index > -1 ? args[index + 1] : $0;
    	} else {
    	return $0;
    	}
    	});
    	});
    	}
    	};
    	
    	RegExp.prototype.exec = function (str) {
    	var result = native.exec.call(this, str);
    	if (!(this._captureNames && result && result.length > 1)) return result;
    	
    	for (var i = 1; i < result.length; i++) {
    	var name = this._captureNames[i - 1];
    	if (name) result[name] = result[i];
    	}
    	
    	return result;
    	};
    	
    	String.prototype.match = function (regexp) {
    	if (!regexp._captureNames || regexp.global) return native.match.call(this, regexp);
    	return regexp.exec(this);
    	};
    	})();
    }
    
    /* Regex syntax parsing with support for escapings, character classes, and various other context and cross-browser issues */
    XRegExp._re = {
    	extended: /(?:[^[#\s\\]+|\\(?:[\S\s]|$)|\[\^?]?(?:[^\\\]]+|\\(?:[\S\s]|$))*]?)+|(\s*#[^\n\r]*\s*|\s+)([?*+]|{\d+(?:,\d*)?})?/g,
    	singleline: /(?:[^[\\.]+|\\(?:[\S\s]|$)|\[\^?]?(?:[^\\\]]+|\\(?:[\S\s]|$))*]?)+|\./g,
    	characterClass: /(?:[^\\[]+|\\(?:[\S\s]|$))+|\[\^?(]?)(?:[^\\\]]+|\\(?:[\S\s]|$))*]?/g,
    	capturingGroup: /(?:[^[(\\]+|\\(?:[\S\s]|$)|\[\^?]?(?:[^\\\]]+|\\(?:[\S\s]|$))*]?|\((?=\?))+|\((?:<([$\w]+)>)?/g,
    	namedBackreference: /(?:[^\\[]+|\\(?:[^k]|$)|\[\^?]?(?:[^\\\]]+|\\(?:[\S\s]|$))*]?|\\k(?!<[$\w]+>))+|\\k<([$\w]+)>(\d*)/g,
    	replacementVariable: /(?:[^$]+|\$(?![1-9$&`']|{[$\w]+}))+|\$(?:([1-9]\d*|[$&`'])|{([$\w]+)})/g
    };
    
    XRegExp.overrideNative = function () {
    	/* Override the global RegExp constructor/object with the XRegExp constructor. This precludes accessing
    	properties of the last match via the global RegExp object. However, those properties are deprecated as
    	of JavaScript 1.5, and the values are available on RegExp instances or via RegExp/String methods. It also
    	affects the result of (/x/.constructor == RegExp) and (/x/ instanceof RegExp), so use with caution. */
    	RegExp = XRegExp;
    };
    
    /* indexOf method from Mootools 1.11; MIT License */
    Array.prototype.indexOf = Array.prototype.indexOf || function (item, from) {
    	var len = this.length;
    	for (var i = (from < 0) ? Math.max(0, len + from) : from || 0; i < len; i++) {
    	if (this[i] === item) return i;
    	}
    	return -1;
    };
    

    You can download it, or get the packed version (2.7 KB).

    XRegExp has been tested in IE 5.5–7, Firefox 2.0.0.4, Opera 9.21, Safari 3.0.2 beta for Windows, and Swift 0.2.

    Finally, note that the XRE object from v0.1 has been removed. XRegExp now only creates one global variable: XRegExp. To permanently override the native RegExp constructor/object, you can now run XRegExp.overrideNative();

    聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    XRegExp0.2:NowWithNamedCapture_js面向?qū)ο?/h4>
    XRegExp0.2:NowWithNamedCapture_js面向?qū)ο? Update: A beta version of XRegExp 0.3 is now available as part of the RegexPal download package. JavaScript's regular expression flavor doesn't support named capture. Well, says who XRegExp 0.2 brings named capture support, along with se
    推薦度:

    標(biāo)簽: js now name
    • 熱門焦點(diǎn)

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top
    主站蜘蛛池模板: 国产亚洲精品va在线 | 国产成人免费高清激情明星 | 欧美日韩精品国产一区二区 | 国产在线播放免费 | 特级一级全黄毛片免费 | 日韩一区二区久久久久久 | 啪啪网站免费观看 | 精品国产乱码久久久久久一区二区 | 在线播放国产一区 | 亚洲原创区 | 黄网站色视频免费观看45分钟 | 2021国产精品自拍 | 亚洲国产激情一区二区三区 | 国产不卡在线 | 久久精品成人一区二区三区 | 欧美日韩电影在线观看 | 久久精品国产免费一区 | 亚洲视频在线免费观看 | 久久久久久亚洲精品中文字幕 | 日韩视频一区二区三区 | 精品国产欧美一区二区五十路 | 国产福利久久青青草原下载 | 精品久久久久久久中文字幕 | 成人精品在线视频 | 久久福利资源网站免费看 | 日韩欧美综合视频 | 亚洲另类中文字幕 | 欧美日韩国产专区 | 永久免费观看的毛片的网站下载 | 国模冰冰双人炮gogo | 国产ssss在线观看极品 | 国产一区91 | 日韩欧美国产中文字幕 | 欧美精品亚洲精品 | 日韩福利在线 | 日本美女逼逼 | 最近韩国日本免费观看 | 2020精品极品国产色在线观看 | 欧美第5页 | 性欧美大战久久久久久久野外 | 国产成人久久久精品一区二区三区 |