ファイルからいくつかの情報を解析したい。
ファイル内の情報:
Rita_bike_house_Sha9
Rita_bike_house
disのように出力したい
$a = Rita_bike_house and $b = Sha9,
$a = Rita_bike_house and $b = "original"
それを取得するために、以下のコードを使用しました。
$name = @_; # This @_ has all the information from the file that I have shown above.
#For matching pattern Rita_bike_house_Sha9
($a, $b) = $name =~ /\w\d+/;
if ($a ne "" and $b ne "" ) { return ($a,$b) }
# this statement doesnot work at all as its first condition
# before the end is not satisified.
$a
「Rita_bike_house」と「Sha9 」を に格納する方法はあります$b
か? 私の正規表現には何かが欠けていると思います。何か提案できますか?