vote up 0 vote down star

Is it possible to truncate a Java string to the closest word boundary after a number of characters. Similar to the PHP wordwrap() function, shown in this example.

flag

2 Answers

vote up 3 vote down check

Use a java.text.BreakIterator, something like this:

String s = ...;
int number_chars = ...;
BreakIterator bi = BreakIterator.getWordInstance();
bi.setText(s);
int first_after = bi.following(number_chars);
// to truncate:
s = s.substring(0, first_after);
link|flag
This is great thanks, although would aa bi.truncateAt() have been too much to ask for? :) – Xenph Yan Feb 5 at 6:02
vote up 2 vote down

You can use regular expression

Matcher m = Pattern.compile("^.{0,10}\\b").matches(str);
m.find();
String first10char = m.group(0);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.