Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
be268f2f76 | |||
8dc7cdb1cd |
1 changed files with 12 additions and 2 deletions
14
script.go
14
script.go
|
@ -1,5 +1,15 @@
|
|||
package mikrotik
|
||||
|
||||
func Test() int {
|
||||
return 137
|
||||
import (
|
||||
// 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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue