mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Added 'Fuzzy Match' operation
This commit is contained in:
parent
5893ac1a37
commit
8ad18bc7db
9 changed files with 196 additions and 39 deletions
|
@ -185,7 +185,7 @@ class RegularExpression extends Operation {
|
|||
* @param {boolean} captureGroups - Display each of the capture groups separately
|
||||
* @returns {string}
|
||||
*/
|
||||
function regexList (input, regex, displayTotal, matches, captureGroups) {
|
||||
function regexList(input, regex, displayTotal, matches, captureGroups) {
|
||||
let output = "",
|
||||
total = 0,
|
||||
match;
|
||||
|
@ -225,7 +225,7 @@ function regexList (input, regex, displayTotal, matches, captureGroups) {
|
|||
* @param {boolean} displayTotal
|
||||
* @returns {string}
|
||||
*/
|
||||
function regexHighlight (input, regex, displayTotal) {
|
||||
function regexHighlight(input, regex, displayTotal) {
|
||||
let output = "",
|
||||
title = "",
|
||||
hl = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue