Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. String tStr = "Computer science in sport''' is an interdisciplinary discipline that has its goal in combining the theoretical as well as practical aspects and methods of the areas of [[Information technology|informatics]] and [[sport science]]. The main emphasis of the [[interdisciplinarity]] is placed on the application and use of computer-based but also mathematical techniques in sport science, aiming in this way at the support and advancement of theory and practice in sports.<ref>{{cite web|author=Daniel Link & Martin Lames|title=Sport Informatics – Historical Roots";
  2. String validateRegex = "(\[\[)(:?)(\w+)(\|?)(\w*)(\]\])";
  3. Pattern pattern = Pattern.compile(validateRegex, Pattern.MULTILINE);
  4. Matcher matcher = pattern.matcher(tStr);
  5. while (matcher.find()) {
  6. System.out.println(matcher.group()+"n");
  7. }
  8.  
  9. [[Information technology|informatics]]
  10. [[sport science]]
  11. [[interdisciplinarity]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement