Golang go/scanner.Scanner.Scan() function examples
package go/scanner
Scan scans the next token and returns the token position, the token, and its literal string if applicable. The source end is indicated by token.EOF.
Golang go/scanner.Scanner.Scan() function usage examples
Example 1:
var s scanner.Scanner
pos, tok, lit = s.Scan()
if tok != token.IDENT || (lit != "true" && lit != "false") {
fmt.Println("expected boolean value")
}
Example 2: (from http://golang.org/pkg/go/scanner/#Scanner.Scan )
package main
import (
"fmt"
"go/scanner"
"go/token"
)
func main() {
// src is the input that we want to tokenize.
src := []byte("cos(x) + 1i*sin(x) // Euler")
// Initialize the scanner.
var s scanner.Scanner
fset := token.NewFileSet() // positions are relative to fset
file := fset.AddFile("", fset.Base(), len(src)) // register input "file"
s.Init(file, src, nil /* no error handler */, scanner.ScanComments)
// Repeated calls to Scan yield the token sequence found in the input.
for {
pos, tok, lit := s.Scan()
if tok == token.EOF {
break
}
fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
}
}
Reference :
Advertisement
Something interesting
Tutorials
+7.4k Golang : Convert source code to assembly language
+7.5k Golang : Shuffle strings array
+23.9k Golang : Fix type interface{} has no field or no methods and type assertions example
+14.2k Golang : Chunk split or divide a string into smaller chunk example
+11.1k Golang : Simple image viewer with Go-GTK
+6.3k Apt-get to install and uninstall Golang
+14.8k Golang : Normalize unicode strings for comparison purpose
+5.4k How to check with curl if my website or the asset is gzipped ?
+41k Golang : How to check if a string contains another sub-string?
+5.2k Responsive Google Adsense
+5.6k Golang : Shortening import identifier