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.
awk -F '[i]|[/i]|' '{print $1}' test1
[gray]# or[/gray]
perl -aF'\|\|' -ne 'print $F[0]' test1
[gray]# or[/gray]
ruby -aF'\|\|' -ne 'print $F[0]' test1
awk -F '||' '{print $1}' test2.dat
awk -F '\\|\\|' '{print $1}' test1