Je veux découper une chaîne si la longueur dépasse 10 caractères.Supposons que si la longueur de la chaîne est de 12[String s="abcdafghijkl"], puis sur la nouvelle chaîne ajustée contiennent "abcdefgh.." S'il vous plait aider..
Réponses
Trop de publicités?
High6
Points
2434
StringUtils.abréger pourrait être votre ami:
StringUtils.abbreviate("abcdefg", 6) = "abc..."
StringUtils.abbreviate("abcdefg", 7) = "abcdefg"
StringUtils.abbreviate("abcdefg", 8) = "abcdefg"
StringUtils.abbreviate("abcdefg", 4) = "a..."
shift66
Points
4964