mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Added forward and backward slashes to the delimiter options for the Morse Code operations. Closes #66.
This commit is contained in:
parent
3b1c378e15
commit
553d9945ce
7 changed files with 42 additions and 38 deletions
|
@ -934,16 +934,18 @@ var Utils = {
|
|||
* @constant
|
||||
*/
|
||||
charRep: {
|
||||
"Space": " ",
|
||||
"Comma": ",",
|
||||
"Semi-colon": ";",
|
||||
"Colon": ":",
|
||||
"Line feed": "\n",
|
||||
"CRLF": "\r\n",
|
||||
"0x": "0x",
|
||||
"\\x": "\\x",
|
||||
"Space": " ",
|
||||
"Comma": ",",
|
||||
"Semi-colon": ";",
|
||||
"Colon": ":",
|
||||
"Line feed": "\n",
|
||||
"CRLF": "\r\n",
|
||||
"Forward slash": "/",
|
||||
"Backslash": "\\",
|
||||
"0x": "0x",
|
||||
"\\x": "\\x",
|
||||
"Nothing (separate chars)": "",
|
||||
"None": "",
|
||||
"None": "",
|
||||
},
|
||||
|
||||
|
||||
|
@ -952,14 +954,16 @@ var Utils = {
|
|||
* @constant
|
||||
*/
|
||||
regexRep: {
|
||||
"Space": /\s+/g,
|
||||
"Comma": /,/g,
|
||||
"Semi-colon": /;/g,
|
||||
"Colon": /:/g,
|
||||
"Line feed": /\n/g,
|
||||
"CRLF": /\r\n/g,
|
||||
"0x": /0x/g,
|
||||
"\\x": /\\x/g
|
||||
"Space": /\s+/g,
|
||||
"Comma": /,/g,
|
||||
"Semi-colon": /;/g,
|
||||
"Colon": /:/g,
|
||||
"Line feed": /\n/g,
|
||||
"CRLF": /\r\n/g,
|
||||
"Forward slash": /\//g,
|
||||
"Backslash": /\\/g,
|
||||
"0x": /0x/g,
|
||||
"\\x": /\\x/g
|
||||
},
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue