はてなブックマークのコメント欄のようなものをParseするモジュール はてなブックマークのコメント欄のようなものをParseするモジュールを組んでみた。 本家の完璧なエミュレートではないです。 package Text::HatenaBookmarkLike::Comment::Parser; use strict; use warnings; sub new{ bless {},shift; } sub parse{ my $self = shift; my $string = shift; my @tags; while(length $string && $string =~ m!^\s*\[([^\]]+)\]!){ my $tag = $1; $string =~ s!^\s*\[([^\]]+)\]!!; next unless length $tag; push(@tags,