1

私は絶対に何も話しませperlperl Template

perlファイルがあり、ファイルを処理するためuse Template;の呼び出しがあります。ファイル内では、次のように変数が出力されます。->process.tt2.tt2[% path | html %]

s/,-.*//(remove ,-and following) をに適用するにはどうすればよい[% path | html %]ですか?

4

1 に答える 1

1

スカラーには.removevmethodがあります。

[% path.remove(',-.*') | html %]
于 2013-02-28T06:35:07.837 に答える