Home > Backend Development > Golang > How to determine whether a string is empty in golang

How to determine whether a string is empty in golang

Release: 2020-01-09 16:21:18
Original
9164 people have browsed it

How to determine whether a string is empty in golang

How to determine whether a string is empty in golang:

if len(str) == 0{
}
Copy after login

Or use the following method to determine:

if str == "" {
}
Copy after login

Use the following method Test:

func Benchmark_Fun(b *testing.B) {
  .......
}
Copy after login

For more golang knowledge, please pay attention to the golang tutorial column on the PHP Chinese website.

The above is the detailed content of How to determine whether a string is empty in golang. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template