Compare commits

...

2 commits
v0.1.1 ... main

View file

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