整数値を返します。

Perlの場合

文字列の先頭から数値として扱える限り数値を返します。

$number = int( '123' ) # 123
$number = int( '12ab' ) # 12