/**
* @(#)ExempleStringBetween.java
* Trouver un String entre deux autres String
*
* @author sakoba(mesexemples.com)
*sakoba(java.mesexemples.com) @version 1.00 2012/12/4
*/
import org.apache.commons.lang3.StringUtils;
public class ExempleStringBetween {
public static void main (String[] args)
{
String codeHTML = "\n" +
" \n" +
" Pages mesexemples.com \n" +
""+
" \n" +
" \n" +
" Exemple d'utilisation de Apache Common!
\n" +
" \n" +
"";
// Extraire le titre du contenu HTM
String titre = StringUtils.substringBetween(codeHTML, "",
" ");
System.out.println( "Titre: " + titre );
// Extraire le Script du contenu HTM
String scripte = StringUtils.substringBetween(codeHTML, "");
System.out.println( "Scripte: " + scripte );
}
}