Martinmu
Results
1
issues of
Martinmu
``` private static final Pattern LOCAL_IMAGE_PATTERN = Pattern.compile("!\\[.*]\\([\\w-_/]+.[png]*[jpg]*[PNG]*[jpeg]*[gif]*\\)"); @Test public void testParseImageTag() throws Exception { String blogString = ""; ArrayList tags = new ArrayList(); Matcher matcher = LOCAL_IMAGE_PATTERN.matcher(blogString); while (matcher.find())...