Zone 01 project — text transformation engine in Go
Peer-to-peer project focused on string manipulation, file I/O, and Go's standard library.
- Master Go's
strings,regexp, andstrconvpackages - Handle edge cases in text processing
- Write idiomatic Go without external dependencies
The program reads text, applies transformation rules (capitalization, punctuation spacing, article formatting), and outputs cleaned text.
| Challenge | My Solution |
|---|---|
| Handling nested transformations | Recursive parsing approach |
| Performance with large files | Buffered I/O |
| Edge cases (apostrophes, quotes) | State machine for quote tracking |
go run . sample.txt result.txt