Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set f [open [file join [pwd] scrap.txt] r]
file4
(m) 14 % proc patternRead {fd pattern} {
set lst {}
while {[gets $fd line] > -1} {
if {[regexp $pattern $line]} {
lappend lst $line
}
}
return $lst
}
(m) 15 % set opat "^\[0-9\]+"
^[0-9]+
(m) 16 % patternRead $f $opat
{307 Offices/Computer Room } {308 A 01 } {309 A 02 } {310 A 03 } {311 A 04 } {312 A 05 }