Golang : How to tokenize source code with text/scanner package?
It has been a while since I touch the topic on tokenizer.....err... since the day I actually built a compiler back in the 90's in Ada95!
Ok, time to cut the grandma or grandpa story.
This short code example below demonstrate how to tokenize souce code with Golang's text/scanner
package.
Here you go !
package main
import (
"fmt"
"strings"
"text/scanner"
)
func main() {
code := `<?php
echo "Hello World!";
?>`
codeReader := strings.NewReader(code)
fmt.Println(code)
fmt.Println("------------------------------")
fmt.Println("TOKENS : ")
fmt.Println("------------------------------")
var scn scanner.Scanner
scn.Init(codeReader)
tok := scn.Scan()
fmt.Println(scn.TokenText())
for tok != scanner.EOF {
tok = scn.Scan()
fmt.Println(scn.TokenText())
}
}
Play at : http://play.golang.org/p/R9pDAt2jOO
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.9k Golang : Compress and decompress file with compress/flate example
+6.8k Mac OSX : Find large files by size
+5.8k Golang : Generate multiplication table from an integer example
+46k Golang : Read tab delimited file with encoding/csv package
+13.9k Golang : Reverse IP address for reverse DNS lookup example
+22k Golang : Print leading(padding) zero or spaces in fmt.Printf?
+5.3k Swift : Convert string array to array example
+18.9k Golang : Check whether a network interface is up on your machine
+11.9k Golang : Clean formatting/indenting or pretty print JSON result
+33.9k Golang : Proper way to set function argument default value
+6.6k Golang : Humanize and Titleize functions