github.com/wfusion/gofusion@v1.1.14/common/constant/symbol.go (about) 1 package constant 2 3 import "os" 4 5 const ( 6 Space = " " 7 Dot = "." 8 Plus = "+" 9 Comma = "," 10 ChineseComma = "," 11 Semicolon = ";" 12 Colon = ":" 13 Hyphen = "-" 14 Slash = "/" 15 Backslash = "\\" 16 LineBreak = "\n" 17 Underline = "_" 18 WindowsLineBreak = "\r\n" 19 PathSeparator = string(os.PathSeparator) 20 ListSeparator = string(os.PathListSeparator) 21 )