there are no regex involved - its a simple pattern match and grep would work fine
#!/bin/bash
#this line would output all lines that do NOT have " /web " and store them in a file called output in current working directory
grep -v " /web " /etc/fstab > outfile
echo "Lines removed from fstab"
#this line would print all lines that have " /web "
grep " /web " /etc/fstab
#uncomment this line if you wish to replace /etc/fstab with the output file.
#mv outfile /etc/fstab