Golang bytes.TrimLeft() Function with Examples

Golang | bytes.TrimLeft() Function: Here, we are going to learn about the TrimLeft() function of the bytes package with its usages, syntax, and examples.
Submitted by IncludeHelp, on September 28, 2021

bytes.TrimLeft()

The TrimLeft() function is an inbuilt function of the bytes package which is used to get a subslice of the byte slice (s) by slicing off all leading UTF-8-encoded code points contained in the string (cutset).

It accepts two parameters (s []byte, cutset string) and returns a subslice of s by slicing off all leading UTF-8-encoded code points contained in the cutset.

Syntax:

func TrimLeft(s []byte, cutset string) []byte

Parameter(s):

  • s : The byte slice for trimming.
  • cutset : The string which contains the characters to be removed.

Return Value:

The return type of the TrimLeft() function is a []byte, it returns a subslice of s by slicing off all leading UTF-8-encoded code points contained in the cutset.

Example 1:

// Golang program to demonstrate the
// example of bytes.TrimLeft() function

package main

import (
	"bytes"
	"fmt"
)

func main() {
	fmt.Printf("%q\n", bytes.TrimLeft(
		[]byte("!!!Hello!!! World.!!!"), "!"))
	fmt.Printf("%q\n", bytes.TrimLeft(
		[]byte("   Hello    World.   "), " "))
	fmt.Printf("%q\n", bytes.TrimLeft(
		[]byte("Hi How are you?"), "Hi "))
}

Output:

"Hello!!! World.!!!"
"Hello    World.   "
"ow are you?"

Example 2:

// Golang program to demonstrate the
// example of bytes.TrimLeft() function

package main

import (
	"bytes"
	"fmt"
)

func main() {
	var str []byte
	var cutset string
	var result []byte

	str = []byte("!!!Hello!!! World.!!!")
	cutset = "!"
	result = bytes.TrimLeft(str, cutset)
	fmt.Printf("Original string: %q\n", str)
	fmt.Printf("Trimmed string: %q\n", result)
	fmt.Println()

	str = []byte("   Hello    World.   ")
	cutset = " "
	result = bytes.TrimLeft(str, cutset)
	fmt.Printf("Original string: %q\n", str)
	fmt.Printf("Trimmed string: %q\n", result)
	fmt.Println()

	str = []byte("Hi How are you?")
	cutset = "Hi "
	result = bytes.TrimLeft(str, cutset)
	fmt.Printf("Original string: %q\n", str)
	fmt.Printf("Trimmed string: %q\n", result)
}

Output:

Original string: "!!!Hello!!! World.!!!"
Trimmed string: "Hello!!! World.!!!"

Original string: "   Hello    World.   "
Trimmed string: "Hello    World.   "

Original string: "Hi How are you?"
Trimmed string: "ow are you?"

Golang bytes Package »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.