Answers for "if statement string compare go"

Go
0

if statement string compare go

import "strings"

// if string found in name it returns 0 else 1
if strings.Compare(command, "h") == 0 {
  // Do something
}
Posted by: Guest on March-03-2020
0

golang if statement with string

import "strings"

// if string found in name it returns 0 else 1
if strings.Compare(name, "compare string") == 1 {
	// Do something
}
Posted by: Guest on March-03-2020

Browse Popular Code Answers by Language