Can I use a field separator consisting of multiple characters? Like I want to separate words which contain quotes and commas between them viz.
\"School\",\"College\"
Try
awk 'BEGIN{FS="[|,:]"}{print $1}' youFile