mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
10 lines
180 B
Nim
Executable File
10 lines
180 B
Nim
Executable File
# Filter key=value pairs from "myfile.txt"
|
|
import regexprs
|
|
|
|
for x in lines("myfile.txt"):
|
|
if x =~ r"(\w+)=(.*)":
|
|
echo "Key: ", matches[1],
|
|
" Value: ", matches[2]
|
|
|
|
|