I am trying to output a string that contains everything between two words of a string:
input:
\"Here is a String\"
output:
sed -e 's/Here\(.*\)String/\1/'