contains
説明
フィルターチェーン系のLinecontainsに含まれます。
ここで該当する文字列を指定します。
属性
id
value
含む
含まれる
サンプル
googleを含む行のみをコピーします。
<target name="copy"> <copy file="log" tofile="google"> <filterchain> <linecontains > <contains value="google"/> </linecontains> </filterchain> </copy> </target>