ときどき、1 つの長い文字列の部分文字列を削除または置換します。したがって、部分文字列の開始点と終了点を決定する 1 つの開始パターンと 1 つの終了パターンを決定します。
long_string = "lorem ipsum..white chevy..blah,blah...lot of text..beer bottle....and so to the end"
removed_substr_start = "white chevy"
removed_substr_end = "beer bott"
# this is pseudo method down
STRresult = long_string.replace( [from]removed_substr_start [to]removed_substr_end, "")