I have a variable that holds the value \'website.html\'.
How can I split that variable so it only gives me the \'website\'?
Thanks
String[] splitString = "website.html".split("."); String prefix = splitString[0];
*Edit, I could've sworn you put Java not javascript
var splitString = "website.html".split("."); var prefix = splitString[0];