Added ScriptEscape function

This commit is contained in:
Magnus Åhall 2023-08-23 09:43:43 +02:00
parent 39c543ef1d
commit 8dc7cdb1cd

View File

@ -1,5 +1,15 @@
package mikrotik package mikrotik
func Test() int { import (
return 137 // Standard
"regexp"
)
func ScriptEscape(source []byte) (escaped []byte) {
rxp2 := regexp.MustCompile("([\"\\\\$])")
source = rxp2.ReplaceAll(source, []byte("\\$1"))
rxp := regexp.MustCompile("\\r?\\n")
escaped = rxp.ReplaceAll(source, []byte("\\r\\\r\n \\n"))
return
} }