sentence.rb revision 4d49ccecb20edaa8053db84a11a3947bffbff6f1
end
\s*
\s*
(?:
(?<first_class>.+)
)
\s*
\s*
(?:
(?<second_class>.+)
)
\s*}x)
if match
[match[:first_class].strip, match[:second_class].strip]
else
[]
end
end
end
end