0
How to split a web address into three parts without dot?
2 Réponses
+ 3
There is a split function in Java, read about it and you would be able to do it
https://www.geeksforgeeks.org/split-string-java-examples/amp/
Once you split www.google.com you will get ["www", "google", "com"]. Use this as you want.
0
Yes