VOOZH about

URL: https://www.geeksforgeeks.org/go-language/strings-lastindexbyte-function-in-golang-with-examples/

⇱ strings.LastIndexByte() Function in Golang With Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

strings.LastIndexByte() Function in Golang With Examples

Last Updated : 28 Apr, 2025
strings.LastIndexByte() Function in Golang returns the index of the last instance of the given byte in the original string. If the given byte is not available in the original string, then this method will return -1. Syntax:
func LastIndexByte(str string, b byte) int
Here, str is the original string and b is a byte, whose we want to find the last index value. Return Value: It returns the integer. Example 1: Output:
8
11
Example 2:
Output:
-1
-1
Comment
Article Tags:

Explore