「文字列」のスライス方法を理解してから、「文字列」を見つけた後に行全体を取得します。 これは私がこれまでに何をすべきかです:文字列の終わりから行末までの文字列の終わりまでのスライシング
content.txt :
#Try to grab this line start
#Try to grab this line 1
#Try to grab this line 2
#Try to grab this line 3
#Try to grab this line 4
#Try to grab this line 5
#Try to grab this line 6
#Try to grab this line end
#Try to grab this line 7
#Try to grab this line 8
私のスクリプト:
出力result.txt:
start
#Try to grab this line 1
#Try to grab this line 2
#Try to grab this line 3
#Try to grab this line 4
#Try to grab this line 5
#Try to grab this line 6
#Try to grab this line
私は必要な出力は次のようになります。
#Try to grab this line start
#Try to grab this line 1
#Try to grab this line 2
#Try to grab this line 3
#Try to grab this line 4
#Try to grab this line 5
#Try to grab this line 6
#Try to grab this line end
ありがとう、私は私のexplを願っていますanationは明らかに どんな助けも大いに評価されるだろう!あなたが行うことができ
を、あなたは包括的、開始と終了の区切り文字の間のすべての行をキャプチャする方法を知りたいですか? – ThisSuitIsBlackNot
はいライン全体 – alanyukeroo
関連:http://stackoverflow.com/q/7559397、http://stackoverflow.com/q/7098530 – ThisSuitIsBlackNot