Qore TextWrap Module Reference
1.0
|
Public Member Methods | |
list | _split (string text) |
string | fill (string text) |
Fill a single paragraph of text, returning a new string. More... | |
list | wrap (string text) |
Wrap a single paragraph of text, returning a list of wrapped lines. More... | |
Private Member Methods | |
_fix_sentence_endings (reference chunks) | |
_handle_long_word (reference reversed_chunks, reference cur_line, int cur_len, int width) | |
string | _munge_whitespace (string text) |
list | _wrap_chunks (list chunks) |
Object for wrapping/filling text. The public interface consists of the wrap() and fill() methods; the other methods are just there for subclasses to override in order to tweak the default behaviour. If you want to completely replace the main wrapping algorithm, you'll probably have to override _wrap_chunks().
Several instance attributes control various aspects of wrapping:
width
(default: 70)initial_indent
(default: "")subsequent_indent
(default: "")expand_tabs
(default: true)tabsize
(default: 8)replace_whitespace
(default: true)fix_sentence_endings
(default: false)break_long_words
(default: true)break_on_hyphens
(default: true)drop_whitespace
(default: true)max_lines
(default: None)placeholder
(default: ' [...]')
|
private |
_fix_sentence_endings (chunks : [string])
Correct for sentence endings buried in 'chunks'. Eg. when the original text contains "... foo.\nBar ...", munge_whitespace() and split() will convert that to [..., "foo.", " ", "Bar", ...] which has one too few spaces; this method simply changes the one space to two.
|
private |
_handle_long_word (chunks : [string], cur_line : [string], cur_len : int, width : int)
Handle a chunk of text (most likely a word, not whitespace) that is too long to fit in any line.
_munge_whitespace (text : string) -> string
Munge whitespace in text: expand tabs and convert all other whitespace characters to spaces. Eg. " foo\tbar\n\nbaz" becomes " foo bar baz".
_split (text : string) -> [string]
Split the text to wrap into indivisible chunks. Chunks are not quite the same as words; see _wrap_chunks() for full details. As an example, the text:
Look, goof-ball – use the -b option!
breaks into the following chunks:
'Look,', ' ', 'goof-', 'ball', ' ', '–', ' ', 'use', ' ', 'the', ' ', '-b', ' ', 'option!'
if break_on_hyphens is True, or in:
'Look,', ' ', 'goof-ball', ' ', '–', ' ', 'use', ' ', 'the', ' ', '-b', ' ', option!'
otherwise.
_wrap_chunks (chunks : [string]) -> [string]
Wrap a sequence of text chunks and return a list of lines of length 'self.width' or less. (If 'break_long_words' is false, some lines may be longer than this.) Chunks correspond roughly to words and the whitespace between them: each chunk is indivisible (modulo 'break_long_words'), but a line break can come between any two chunks. Chunks should not have internal whitespace; ie. a chunk is either all whitespace or a "word". Whitespace chunks will be removed from the beginning and end of lines, but apart from that whitespace is preserved.
Fill a single paragraph of text, returning a new string.
fill (text : string) -> string
Reformat the single paragraph in 'text' to fit in lines of no more than 'self.width' columns, and return a new string containing the entire wrapped paragraph.
Wrap a single paragraph of text, returning a list of wrapped lines.
wrap (text : string) -> [string]
Reformat the single paragraph in 'text' so it fits in lines of no more than 'self.width' columns, and return a list of wrapped lines. Tabs in 'text' are expanded with expandtabs(), and all other whitespace characters (including newline) are converted to space.