Golang : Customize scanner.Scanner to treat dash as part of identifier
Putting this down here for my own future reference. Ok, the problem that I'm solving today involved using the text/scanner
package to parse a given input with strings such as beli-belah
, buah-buahan
and jalan-jalan
.
The initial problem is that scanner.Scanner
will break buah-buahan
to buah
and buahan
.
So, how to customize the scanner to treat -
dash as part of the identifier?
Simple, use .IsIdentRune
method to override the default behavior of the scanner
.
For example,
var scn scanner.Scanner
scn.Init(rumiReader)
scn.Whitespace ^= 1<<'\t' | 1<<'\n' | 1<<'\r' | 1<<' ' // don't skip tabs and new lines
// treat leading '-' as part of an identifier ... for word such as buah-buahan, biri-biri
scn.IsIdentRune = func(ch rune, i int) bool {
return ch == '-' && i == 0 || unicode.IsLetter(ch) || unicode.IsDigit(ch) && i > 0 || unicode.IsPunct(ch)
}
If you encounter the same problem as I am, hope this helps!
Reference :
See also : Golang : How to tokenize source code with text/scanner package?
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
+22.7k Golang : Read a file into an array or slice example
+23.2k Golang : Check if element exist in map
+5.9k Golang : Get Hokkien(福建话)/Min-nan(閩南語) Pronounciations
+7.3k Gogland : Single File versus Go Application Run Configurations
+7.9k Golang : How To Use Panic and Recover
+15.6k Golang : Read a file line by line
+11.1k Golang : Concatenate (combine) buffer data example
+8.8k Golang : Gonum standard normal random numbers example
+3.5k Java : Random alphabets, alpha-numeric or numbers only string generator
+8.7k Golang : automatically figure out array length(size) with three dots
+12.3k Android Studio : Highlight ImageButton when pressed on example
+9.1k Golang : Launch Mac OS X Preview (or other OS) application from your program example