0

Time.replaceall

Time.replaceall what's this in java?

29th Jan 2019, 7:51 PM
Manav Malhotra
Manav Malhotra - avatar
1 Answer
0
probably time is String and then replaceAll(..) replace defined same parts of this string with other string. https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html#replaceAll(java.lang.String,java.lang.String) Here is some other types, using with replaceAll() in standard libraries. java.lang.String.replaceAll(String, String) java.util.Map.replaceAll(BiFunction) java.util.regex.Matcher.replaceAll(Function) java.util.regex.Matcher.replaceAll(String) java.util.Collections.replaceAll(List, T, T) java.util.List.replaceAll(UnaryOperator) java.util.Vector.replaceAll(UnaryOperator) java.security.Provider.replaceAll(BiFunction) java.util.concurrent.ConcurrentMap.replaceAll(BiFunction)
30th Jan 2019, 1:08 AM
zemiak