How to use strconv.CanBackquote() Function in Golang? Last Updated : 03 May, 2020 Comments Improve Suggest changes Like Article Like Report Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides a CanBackquote() function which is used to check whether the string str can be represented unchanged as a single-line backquoted string without control characters other than a tab or not. To access CanBackquote() function you need to import strconv Package in your program with the help of import keyword. Syntax: func CanBackquote(str string) bool Parameter: This function takes one parameter of string type, i.e., str. Return value: This function returns true if the string str can be represented unchanged as a single-line backquoted string, otherwise return false. Let us discuss this concept with the help of the given examples: Example 1: C // Golang program to illustrate // strconv.CanBackquote() Function package main import ( "fmt" "strconv" ) func main() { // Checking whether the given // string can be represented // unchanged as a single-line // backquoted string // Using CanBackquote() function fmt.Println(strconv.CanBackquote("Welcome to GeeksforGeeks")) fmt.Println(strconv.CanBackquote("`Welcome to GeeksforGeeks`")) fmt.Println(strconv.CanBackquote(`"Welcome to GeeksforGeeks"`)) } Output: true false true Example 2: C // Golang program to illustrate // strconv.CanBackquote() Function package main import ( "fmt" "strconv" ) // Main function func main() { // Checking whether the given // string can be represented // unchanged as a single-line // backquoted string // Using CanBackquote() function res := strconv.CanBackquote("Welcome to GeeksforGeeks") if res == true { fmt.Println("The given string is unchanged "+ "single-line backquoted string.") } else { fmt.Println("The given string is a "+ "changeable single-line backquoted string.") } } Output: The given string is unchanged single-line backquoted string. Comment More infoAdvertise with us Next Article How to use strconv.CanBackquote() Function in Golang? A ankita_saini Follow Improve Article Tags : Go Language Golang-strconv Similar Reads How to use strconv.FormatBool() Function in Golang? Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides a FormatBool() function which is used to return true or false according to the value of x. To access FormatBool() function you need to import 2 min read How to use strconv.FormatUint() Function in Golang? Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides a FormatUint() function which is used to return the string representation of x in the given base, i.e., 2 <= base <= 36. Here, the resu 2 min read How to use strconv.Quote() Function in Golang? Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides a Quote() function which is used to find a double-quoted Go string literal representing str and the returned string uses Go escape sequences 2 min read How to use strconv.Itoa() Function in Golang? Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides an Itoa() function which is equivalent to FormatInt(int64(x), 10). Or in other words, Itoa() function returns the string representation of x 2 min read How to use strconv.IsPrint() Function in Golang? Go language provides inbuilt support to implement conversions to and from string representations of basic data types by strconv Package. This package provides an IsPrint() function which is used to check whether the rune is defined as printable by Go or not with the same definition as unicode.IsPrin 2 min read Like