Skip to content
Snippets Groups Projects
Commit 43e06258 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Result: Add ->type accessor

parent 68cd2f9b
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,15 @@ sub TO_JSON {
return { %{$self} };
}
sub type {
my ($self) = @_;
# $self->{train} is either "TYPE 12345" or "TYPE12345"
my ($type) = ( $self->{train} =~ m{ ^ ([A-Z]+) }x );
return $type;
}
1;
__END__
......@@ -259,6 +268,11 @@ references of the form C<< [ arrival time, station name ] >>.
Returns the arrival/departure time as string in "hh:mm" format.
=item $result->type
Returns the type of this train, e.g. "S" for S-Bahn, "RE" for Regional Express
or "ICE" for InterCity-Express.
=back
=head2 INTERNAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment