remove line with match command

C++
Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txtUse d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/,+1 d" file.txt #+1 defines number of lines
# to delete after matching line
Source

Also in C++: