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 ...
6
votes
5answers
219 views
Balanced word wrap (Minimum raggedness) in PHP
I'm going to make a word wrap algorithm in PHP. I want to split small chunks of text (short phrases) in n lines of maximum m characters (n is not given, so there will be as much lines as needed). The ...
4
votes
6answers
459 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
463 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
815 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
279 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
363 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
638 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
2answers
58 views
String Word Wrap in Message Box?
I'm trying to wrap the words of a given string and display it in a message box using SFML (<-- this doesn't matter ).
So, what I am trying to do is to insert a new line before a word that is ...
0
votes
1answer
184 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.
...