I have a variable that holds the value 'website.html'.
How can I split that variable so it only gives me the 'website'?
Thanks
The split() method splits a string into an array of substrings. The split() method returns the new array. The split() method does not change the original string. If (" ") is used as separator, the string is split between words.
split() The split() method takes a pattern and divides a String into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.
The <br> HTML element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.
var a = "website.html";
var name = a.split(".")[0];
If the file name has a dot in the name, you could try...
var a = "website.old.html";
var nameSplit = a.split(".");
nameSplit.pop();
var name = nameSplit.join(".");
But if the file name is something like my.old.file.tar.gz
, then it will think my.old.file.tar
is the file name
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];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With