本文整理匯總了TypeScript中lodash.escapeRegExp函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript escapeRegExp函數的具體用法?TypeScript escapeRegExp怎麽用?TypeScript escapeRegExp使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了escapeRegExp函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: RegExp
_.map(parsed, (value, key) => {
const fieldMatcher = new RegExp(`"${key}"\\s*:\\s*"?${_.escapeRegExp(JSON.stringify(value))}"?`);
const match = line.match(fieldMatcher);
if (match) {
fields.push(match[0]);
}
});
示例2:
.map(part => _.escapeRegExp(part))
示例3: RegExp
fromLdap: (s: string): string => {
let base_ = _.escapeRegExp(base);
let reg = new RegExp(`^${attrName}=(.*),${base_}$`);
let m = s.match(reg);
return m && m[1];
},
示例4: escapeRegExp
const allStrings = strings.map(s => escapeRegExp(s)).sort((a, b) => b.localeCompare(a));
示例5: betterEscapeRegex
export function betterEscapeRegex(str: string): string {
let result = _.escapeRegExp(str);
return result.replace(/-/g, "\\-");
}