Skip to content

gillerick/systems-programming-in-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Systems Design

This project is based on the study of Mihalis Tsoukalos' Go Systems Programming

Regular Expressions

Metacharacter Meaning
^ Matches the beginning of the line only
$ Matches the end of the line only
* A single character followed by an * will match zero or more occurrences
[] Character enclosed inside the [] will be matched. This can be a single or range of characters. You can use the - to include a range inclusively. Instead of saying [12345] use [1-5]
\ This is used to escape the special meaning of a metacharacter
. Matches any single character
pattern {n } Matches a specific number of occurrences specified by n that contains the preceding character
pattern {n,}m Works like the above pattern but matches at least n occurrence if the preceding pattern
pattern {n,m} Matches any number of occurrences between n and m of the preceding pattern

wc

About

This repository is based on the study of the book Go Systems Programming by Mihalis Tsoukalos

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages