import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String[] args) {
final String regex = "(?:[^!]\\[(?P<caption>.*?)\\])\\((?P<image>.*?)\\)";
final String string = "This is a regex to detect markdown image links of the form ![image caption](image URL)\n\n"
+ "![Caption.](image.png){#fig:id}\n"
+ "![Caption.](image.png){#fig:id tag=\"B.1\"}\n"
+ "![This is a sample image representing the VOD curve of a packaged Watergel explosive.](../assets/1v6C9yek3pHsXSeOlR4glzDMkFqFHizR6VXr79tEOnY=.png){#fig:ch0_1_images-1 width=100%}\n"
+ "![](../../assets/E5WnRoSH_Dqrzl8f5_ZJ9AjWc-53BgiBqD_xTqEp6pM=.png)\n"
+ "![](../../assets/l2mxAo3IR1dc3Wrgt7Ulqhcm_8nwqFw5UY7pUI3X0oI=.png)\n"
+ "![](../../assets/Y7jjv0ceQH5Ew5O32U2Z_N7ARBfKn2FnHnUoUt_DYbA=.png)\n"
+ "![](../../assets/eOvy-JcdA7pjoDJS4rIgG5RgDfYJ4PY11Owbgy5DHWM=.png)\n"
+ "![](../../assets/XwMrG0o__iLF5nStoSPUuJ81ffxafRBWAVnEcGo10Yo=.png)\n"
+ "![](../../assets/AfHKsc518nK6Ew2MHJt96lJMkTiVAyIiuva6L-lRQaQ=.png)\n"
+ "![](../../assets/JyDHFl6DyL1mw5EI-pSb9ssNzmbsEaSPQn5AOiZqeiM=.png)\n"
+ "![](../../assets/BYGvFWn41qFZuU3C7Jyd1uHjs8Cib8eEJod0sIze9S0=.png)\n"
+ "![](../../assets/77U97Em8AN06LCGVxH6UQ_Lh3OZkNsJRkMZY1nBMVrA=.png)\n"
+ "![](../../assets/iPkPth_Vh_wSgeD0wqxlctDyDEmgHfYuhTqBQE6mynI=.png)\n"
+ "![](../../assets/h57_b4_XeFd5SR1iYLu9WsYNy_n8sM6rPbQdGephk1c=.png)\n"
+ "![](../../assets/u8Y_44VG3-pD8fweuazkSN9fflhJfgCqOtc2ooP2sVM=.png)\n"
+ "![](../../assets/dc-ExOEXIWnH0qwVHTSNmFljUwyKS0xeEYFxS98ZEYg=.png)\n"
+ "![](../../assets/nJZLBZEOCiOT2P1F2c5mVQZrCrIJB5i1EnRgT767WWo=.png)\n"
+ "![](../../assets/ilG_dm7Lr3315RFsUdJCW7tkJbTZlnmV_NNKFBDeyxc=.png)\n"
+ "![](../../assets/1v6C9yek3pHsXSeOlR4glzDMkFqFHizR6VXr79tEOnY=.png)\n"
+ "![](../../assets/Bw1eWhlyutzMa8Eg94-VnSk_TsffrBLeoZKWySkMwIw=.png)\n"
+ "![](../../assets/9RIkA4mInkKNSIxMi7ctUozBJPUqlHPugIfG2yr37Co=.png)\n"
+ "![Hyperbola](../../assets/300px-Hyperbola_properties.svg.png)\n"
+ "![Hyperbola](../../assets/HyperbolaAnatomyLeft.png)\n"
+ "![Hyperbola](../../assets/HyperbolaAnatomyRight.png)\n"
+ "![](../../assets/IsXLnPl1wKraeLnryg2rOxtYdGSSHg8vTTN1ObV0Dt8=.png)";
final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE);
final Matcher matcher = pattern.matcher(string);
while (matcher.find()) {
System.out.println("Full match: " + matcher.group(0));
for (int i = 1; i <= matcher.groupCount(); i++) {
System.out.println("Group " + i + ": " + matcher.group(i));
}
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html