import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String[] args) {
final String regex = "(\\w+:\\/\\/[\\w\\.]+?\\/([\\w\\.]+?)\\/([\\w\\.]+?))\\s";
final String string = "1. https://github.com/ymcatwincities/openy_block_modal - Implements a simple block with a body and title that will be used to display modal windows.\n"
+ "1. https://github.com/ymcatwincities/openy_memberships - Membership Framework for OpenY and Drupal.\n"
+ "1. https://github.com/ymcatwincities/openy_prgf_sidebar_menu - SideBar menu for referencing menu blocks and using in SideBars across different pages.\n"
+ "1. https://packagist.org/packages/openy/openy_loc_finder - Extended Location Finder\n"
+ "1. https://github.com/Open-Y-subprojects/reqclique_gxp_sync - Reqclique Group Exercise Sync\n"
+ "1. https://github.com/open-y-subprojects/virtual_y_signaling_server - Signalling server for Virtual Y";
final String subst = "[$2/$3]($1) ";
final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE);
final Matcher matcher = pattern.matcher(string);
// The substituted value will be contained in the result variable
final String result = matcher.replaceAll(subst);
System.out.println("Substitution result: " + result);
}
}
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