How to check if a String is an Integer in Go Language

Hello everyone, in this tutorial, we’ll explore multiple ways to detect if the given String is an int.


Example 1: Using strconv.Atoi() function
package main

import (
"fmt"
"strconv"
)

func main() {
str1 := "5674"
str2 := "123o"
fmt.Println(IsInt(str1))
fmt.Println(IsInt(str2))
}

func IsInt(str string) bool {
_, err := strconv.Atoi(str)
if err != nil {
return false
} else {
return true
}
}
Output:

Author: Joy

More Related Topics,

Popular posts from this blog

Learn Java 8 streams with an example - print odd/even numbers from Array and List

Java Stream API - How to convert List of objects to another List of objects using Java streams?

Registration and Login with Spring Boot + Spring Security + Thymeleaf

Java, Spring Boot Mini Project - Library Management System - Download

ReactJS, Spring Boot JWT Authentication Example

Top 5 Java ORM tools - 2024

Java - Blowfish Encryption and decryption Example

Spring boot video streaming example-HTML5

Google Cloud Storage + Spring Boot - File Upload, Download, and Delete