Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReplaceAllLiteralString (0.1 sec)

  1. internal/logger/console.go

    	pretty(msg string, args ...any)
    }
    
    func consoleLog(console Logger, msg string, args ...any) {
    	switch {
    	case jsonFlag:
    		// Strip escape control characters from json message
    		msg = ansiRE.ReplaceAllLiteralString(msg, "")
    		console.json(msg, args...)
    	case quietFlag:
    		if len(msg) != 0 && len(args) == 0 {
    			args = append(args, msg)
    			msg = "%s"
    		}
    		console.quiet(msg+"\n", args...)
    	default:
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg regexp, method (*Regexp) ReplaceAllFunc([]uint8, func([]uint8) []uint8) []uint8
    pkg regexp, method (*Regexp) ReplaceAllLiteral([]uint8, []uint8) []uint8
    pkg regexp, method (*Regexp) ReplaceAllLiteralString(string, string) string
    pkg regexp, method (*Regexp) ReplaceAllString(string, string) string
    pkg regexp, method (*Regexp) ReplaceAllStringFunc(string, func(string) string) string
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top