ZenScript main repository
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Strings.java 908B

1234567891011121314151617181920212223242526272829
  1. package stdlib;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public final class Strings {
  5. private Strings() {}
  6. public static String[] split(String self, char delimiter) {
  7. List<String> result = new ArrayList<String>();
  8. int start = 0;
  9. int limitForI = self.length();
  10. for (int i = 0; i < limitForI; i++) {
  11. if (self.charAt(i) == delimiter) {
  12. result.add(self.substring(start, i));
  13. start = i + 1;
  14. }
  15. }
  16. result.add(self.substring(start, self.length()));
  17. return result.toArray(new String[result.size()]);
  18. }
  19. public static String lpad(String self, int length, char c) {
  20. return self.length() >= length ? self : Chars.times(c, length - self.length()) + self;
  21. }
  22. public static String rpad(String self, int length, char c) {
  23. return self.length() >= length ? self : self + Chars.times(c, length - self.length());
  24. }
  25. }