Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
String line = "John<br>James<br>Lisa<br>Mary<br>";
String john = line.substring(0, line.indexOf("<br>"));
String line = "John<br>James<br>Lisa<br>Mary<br>";
String[] names = line.split("<br>");
for (int i = 0; i < names.length; i++) {
System.out.println(names[i]);
}