Golang strconv.AppendQuoteRuneToGraphic() Function with Examples

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

strconv.AppendQuoteRuneToGraphic()

The AppendQuoteRuneToGraphic() function is an inbuilt function of the strconv package which is used to append the single-quoted Go character literal representing the r (as generated by QuoteRuneToGraphic() function), to dst and returns the extended buffer. Where dst is the first parameter of []byte type and r is the second parameter of rune type.

It accepts two parameters (dst, r) and returns the extended buffer.

Syntax:

func AppendQuoteRuneToGraphic(dst []byte, r rune) []byte

Parameter(s):

  • dst : A byte array (or byte slices) in which we have to append the single-quoted character literal.
  • r : Rune character to be appended.

Return Value:

The return type of AppendQuoteRuneToGraphic() function is a []byte, it returns the extended buffer after appending the single-quoted character.

Example 1:

// Golang program to demonstrate the
// example of strconv.AppendQuoteRuneToGraphic() Function

package main

import (
	"fmt"
	"strconv"
)

func main() {
	x := []byte("QuoteRuneToGraphic:")
	fmt.Println("Before AppendQuoteRuneToGraphic()")
	fmt.Println(string(x))

	// Appending a character
	// [rune 97 - Unicode of a]
	x = strconv.AppendQuoteRuneToGraphic(x, 97)
	fmt.Println("After AppendQuoteRuneToGraphic()")
	fmt.Println(string(x))

	// Appending an emotion (emoji)
	x = strconv.AppendQuoteRuneToGraphic(x, '🥰')
	fmt.Println("After AppendQuoteRuneToGraphic()")
	fmt.Println(string(x))
}

Output:

Before AppendQuoteRuneToGraphic()
QuoteRuneToGraphic:
After AppendQuoteRuneToGraphic()
QuoteRuneToGraphic:'a'
After AppendQuoteRuneToGraphic()
QuoteRuneToGraphic:'a''🥰'

Example 2:

// Golang program to demonstrate the
// example of strconv.AppendQuoteRuneToGraphic() Function

package main

import (
	"fmt"
	"strconv"
)

func main() {
	x := []byte("QuoteRuneToGraphic:")
	fmt.Println("Before appending...")
	fmt.Println("x:", string(x))
	fmt.Println("Length(x): ", len(x))

	// Appending characters & monkey facse
	x = strconv.AppendQuoteRuneToGraphic(x, 97)
	x = strconv.AppendQuoteRuneToGraphic(x, '🙈')
	x = strconv.AppendQuoteRuneToGraphic(x, '🙉')
	x = strconv.AppendQuoteRuneToGraphic(x, '🙊')

	fmt.Println("After appending...")
	fmt.Println("x:", string(x))
	fmt.Println("Length(x): ", len(x))
}

Output:

Before appending...
x: QuoteRuneToGraphic:
Length(x):  19
After appending...
x: QuoteRuneToGraphic:'a''🙈''🙉''🙊'
Length(x):  40

Golang strconv Package »





Comments and Discussions!

Load comments ↻






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