Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
if (fieldname.indexOf(" + ") != -1) // if we would get more then one field as result
{
String[] words = fieldname.split (" + ");
for (int i=0; i < words.length; i++)
{
content += words[i];
}
content += " debug";
return description + content;
}
/**
*
*/
package de.tutorials;
import java.util.Arrays;
/**
* @author thomas.darimont
*
*/
public class Main {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
System.out.println(Arrays.asList("test4 + test3 + test2 + test1"
.split(" \\+ ")));
}
}