Here is the input string:
#video:firstVideo.mp4#
#video:secondVideo.mp4 title:Title of second Video#
#video:thirdVideo.mp4#
I want to match all of the above lines (the title: attribute is optional). However, the Java RegEx below will only match the second line.
(?<=#)video:(.*?).mp4\stitle:(.*?)(?=#)
How can I correct this RegEx to make the title: attribute optional and will return all three lines? I will vote for whoever has a working/efficient answer!