StringTools
Indent
indent text a specified amount
Calling Sequence
Parameters
Description
Examples
Indent( s )
Indent( s, lineindent )
s
-
Maple string; string to be indented
lineindent
{posint,string}; (optional) number of spaces or string to use for indent
The procedure Indent indents a string s by replacing the beginning of each line in s by lineindent spaces, if lineindent is a non-negative integer, or if lineindent is a string by that string.
The indented string is returned.
The lineindent argument is optional. It is equal to 8 by default, which causes the input text to be indented by 8 spaces.
All of the StringTools package commands treat strings as (null-terminated) sequences of 8-bit (ASCII) characters. Thus, there is no support for multibyte character encodings, such as unicode encodings.
with⁡StringTools:
printf⁡%s\n,Indent⁡a\nb\nc
a b c
printf⁡%s\n,Indent⁡a\nb\nc,2
printf⁡%s\n,Indent⁡a\nb\nc, -
- a - b - c
txt≔Arma virumque cano, Troiae qui primus ab oris\nItaliam, fato profugus, Laviniaque venit\nlitora, multum ille et terris iactatus et alto\nvi superum saevae memorem Iunonis ob iram;\nmulta quoque et bello passus, dum conderet urbem,\ninferretque deos Latio, genus unde Latinum,\nAlbanique patres, atque altae moenia Romae.:
printf⁡%s\n,txt
Arma virumque cano, Troiae qui primus ab oris Italiam, fato profugus, Laviniaque venit litora, multum ille et terris iactatus et alto vi superum saevae memorem Iunonis ob iram; multa quoque et bello passus, dum conderet urbem, inferretque deos Latio, genus unde Latinum, Albanique patres, atque altae moenia Romae.
printf⁡%s\n,Indent⁡txt
printf⁡%s\n,Indent⁡txt,2
printf⁡%s\n,Indent⁡txt,--
--Arma virumque cano, Troiae qui primus ab oris --Italiam, fato profugus, Laviniaque venit --litora, multum ille et terris iactatus et alto --vi superum saevae memorem Iunonis ob iram; --multa quoque et bello passus, dum conderet urbem, --inferretque deos Latio, genus unde Latinum, --Albanique patres, atque altae moenia Romae.
pandp≔It is a truth universally acknowledged, that a single man in\npossession of a good fortune, must be in want of a wife.\n\nHowever little known the feelings or views of such a man may\nbe on his first entering a neighbourhood, this truth is so well\nfixed in the minds of the surrounding families, that he is considered\nthe rightful property of some one or other of their daughters.:
printf⁡%s\n,pandp
It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife. However little known the feelings or views of such a man may be on his first entering a neighbourhood, this truth is so well fixed in the minds of the surrounding families, that he is considered the rightful property of some one or other of their daughters.
printf⁡%s\n,Indent⁡pandp
printf⁡%s\n,Indent⁡pandp,2
Specifying an indent amount is just a special case of specifying an indent string.
randj≔Two households, both alike in dignity,\nIn fair Verona, where we lay our scene,\nFrom ancient grudge break to new mutiny,\nWhere civil blood makes civil hands unclean.\nFrom forth the fatal loins of these two foes\nA pair of star-cross'd lovers take their life;\nWhose misadventur'd piteous overthrows\nDoth with their death bury their parents' strife.\nThe fearful passage of their death-mark'd love,\nAnd the continuance of their parents' rage,\nWhich, but their children's end, naught could remove,\nIs now the two hours' traffic of our stage;\nThe which if you with patient ears attend,\nWhat here shall miss, our toil shall strive to mend.:
printf⁡%s\n,randj
Two households, both alike in dignity, In fair Verona, where we lay our scene, From ancient grudge break to new mutiny, Where civil blood makes civil hands unclean. From forth the fatal loins of these two foes A pair of star-cross'd lovers take their life; Whose misadventur'd piteous overthrows Doth with their death bury their parents' strife. The fearful passage of their death-mark'd love, And the continuance of their parents' rage, Which, but their children's end, naught could remove, Is now the two hours' traffic of our stage; The which if you with patient ears attend, What here shall miss, our toil shall strive to mend.
printf⁡%s\n,Indent⁡randj,
printf⁡%s\n,Indent⁡randj,2
You can use this command to create simple plain-text bulleted lists.
txt≔first\nsecond\nthird:
first second third
printf⁡%s\n,Indent⁡txt, -
- first - second - third
See Also
string
StringTools,ExpandTabs
StringTools,WrapText
Download Help Document