2018-12-30 03:20:24 -08:00
/**
* @author masq [github.cyberchef@masq.cc]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
import Operation from "../Operation" ;
/**
* To Case Insensitive Regex operation
*/
class ToCaseInsensitiveRegex extends Operation {
/**
* ToCaseInsensitiveRegex constructor
*/
constructor () {
super ();
this . name = "To Case Insensitive Regex" ;
this . module = "Default" ;
2019-01-10 15:01:01 +00:00
this . description = "Converts a case-sensitive regex string into a case-insensitive regex string in case the i flag is unavailable to you.<br><br>e.g. <code>Mozilla/[0-9].[0-9] .*</code> becomes <code>[mM][oO][zZ][iI][lL][lL][aA]/[0-9].[0-9] .*</code>" ;
2018-12-30 03:20:24 -08:00
this . infoURL = "https://wikipedia.org/wiki/Regular_expression" ;
this . inputType = "string" ;
this . outputType = "string" ;
this . args = [];
}
/**
* @param {string} input
* @param {Object[]} args
* @returns {string}
*/
run ( input , args ) {
return input . replace ( /[a-z]/ig , m => `[ ${ m . toLowerCase () }${ m . toUpperCase () } ]` );
}
}
export default ToCaseInsensitiveRegex ;