Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
be268f2f76 |
1 changed files with 3 additions and 3 deletions
|
@ -5,11 +5,11 @@ import (
|
||||||
"regexp"
|
"regexp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ScriptEscape(source []byte) (escaped []byte) {
|
func ScriptEscape(source string) (escaped string) {
|
||||||
rxp2 := regexp.MustCompile("([\"\\\\$])")
|
rxp2 := regexp.MustCompile("([\"\\\\$])")
|
||||||
source = rxp2.ReplaceAll(source, []byte("\\$1"))
|
source = rxp2.ReplaceAllString(source, "\\$1")
|
||||||
|
|
||||||
rxp := regexp.MustCompile("\\r?\\n")
|
rxp := regexp.MustCompile("\\r?\\n")
|
||||||
escaped = rxp.ReplaceAll(source, []byte("\\r\\\r\n \\n"))
|
escaped = rxp.ReplaceAllString(source, "\\r\\\r\n \\n")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue