我该怎么做:
谢谢, -Brian
答案 0 :(得分:0)
<强> .NET 强>
<强> PHP 强>
想我会覆盖两种流行的语言,然后在确定语言时更新
答案 1 :(得分:0)
<强>击强>
infile="example.in"
outfile="example.out"
reStart="^ABC"
reEnd="^DEF"
found=0
cat $infile | while read line; do
if [[ $found == 0 ]]; then
if [[ "$line" =~ $reStart ]]; then
found=1
touch $outfile
fi
else
if [[ "$line" =~ $reEnd ]]; then
found=0
else
echo $line >> $outfile
fi
fi
done
上面将在$ start($ reStart)和end($ reEnd)条件之间写入来自$ infile的行,而不是具有start和end条件本身的行到$ outfile。如果你需要的话,稍微重组会自己编写起始行和结束行。