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.3k Golang : Strings comparison
+22.4k Golang : Round float to precision example
+19.8k Golang : Check if os.Stdin input data is piped or from terminal
+6k Javascript : Generate random key with specific length
+5.6k Golang : Find change in a combination of coins example
+16.2k Golang : Send email and SMTP configuration example
+5.9k Golang : Get missing location after unmarshal binary and gob decode time.
+11.4k Golang : Secure file deletion with wipe example
+17.3k Golang : [json: cannot unmarshal object into Go value of type]
+12.1k Golang : Extract part of string with regular expression
+13.4k Golang : Activate web camera and broadcast out base64 encoded images
+10.3k Golang : Select region of interest with mouse click and crop from image