Tagged Questions
9
votes
9answers
12k views
Best word wrap algorithm?
Word wrap is one of must-have features in modern text editor.
Do you know how to handle word wrap?
What is the best algorithm for word-wrap?
updated:
If text is several million lines, how can I ...
4
votes
6answers
426 views
Word wrap to X lines instead of maximum width (Least raggedness)
Does anyone know a good algorithm to word wrap an input string to a specified number of lines rather than a set width. Basically to achieve the minimum width for X lines.
e.g. "I would like to be ...
4
votes
1answer
441 views
Algorithm for Text Wrapping Within a Shape
I am looking for an algorithm to wrap text within a non-rectangular shape, preferably based on the Knuth and Plass algorithm. The hardest part of this is that the lines may have different heights due ...
4
votes
3answers
802 views
Algorithm for re-wrapping hard-wrapped text?
Let's say that I have written a custom e-mail management application for the company that I work for. It reads e-mails from the company's support account and stores cleaned-up, plain text versions of ...
2
votes
4answers
2k views
wordwrap function
Hey guys, I'm writing a word wrap function to format console text in C++. My problem is either A) I don't understand exactly what std::string::iterators do, or B) one of my iterators is not being set ...
1
vote
2answers
262 views
Approximate algorithm for minimum raggedness word wrap
I'm looking for an efficient algorithm (ideally, C-like pseudocode) to give an approximate solution to the following partition problem. Given a sequence S = {a_i : i=1,...,n} and a bound B, ...
1
vote
1answer
331 views
Rendering CoreText within an irregular shape
I'm looking for guidance on implementing a view that renders an NSAttributedString within a polygon with holes, wrapping and reflowing text to fit the geometry. It's not CoreText that's the issue, but ...
1
vote
2answers
610 views
Word Wrap algorithms for Japanese
In a recent web application I built, I was pleasantly surprised when one of our users decided to use it to create something entirely in japanese. However, the text was wrapped strangely and awkwardly. ...
0
votes
1answer
166 views
How to reuse Word wrap algorithm in textbox?
I know TextBox/TextBlock already support text word wrap very well. (Windows WPF)
the question is how can I reuse that logic? so I don't need to write an other word wrap util class for this purpose.
...