I would like to know if there is, in Java, a function that can prefix a defined String to the beginning of every String of an array of Strings.
For example,
my_function({"apple", "orange", "ant"}, "eat an ") would return {"eat an apple", "eat an orange", "eat an ant"}
Currently, I coded this function, but I wonder if it already exists.
Nope. Since it should be about a three-line function, you're probably better of just sticking with the one you coded.
With Java 8, the syntax is simple enough I'm not even sure if it's worth creating a function for:
List<String> eatFoods = foodNames.stream()
.map(s -> "eat an " + s)
.collect(Collectors.toList());
Nothing like this exists in the java libraries. This isn't Lisp, so Arrays are not Lists, and a bunch of List oriented functions aren't already provided for you. That's partially due to Java's typing system, which would make it impractical to provide so many similar functions for all of the different types that can be used in a list-oriented manner.
public String[] prepend(String[] input, String prepend) {
String[] output = new String[input.length];
for (int index = 0; index < input.length; index++) {
output[index] = "" + prepend + input[index];
}
return output;
}
Will do the trick for arrays, but there are also List
interfaces, which include resizable ArrayList
s, Vector
s, Iteration
s, LinkedList
s, and on, and on, and on.
Due to the particulars of object oriented programming, each one of these different implementations would have to implement "prepend(...)" which would put a heavy toll on anyone caring to implement a list of any kind. In Lisp, this isn't so because the function can be stored independently of an Object.
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