Qstrcat: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
Fox (talk | contribs)
No edit summary
Line 3: Line 3:
Appends the text of <quote2> to the end of <quote1>.
Appends the text of <quote2> to the end of <quote1>.


Deprecated for most cases because it directly concatenates the quotes together without any space in between. To include space between the quotes, or to concatenate multiple quotes, use [[qsprintf]].
Deprecated for most cases because it directly concatenates the quotes together without any space in between. To include space between the quotes, or to concatenate multiple quotes, use [[qsprintf]]. [[qstrncat]] can be used to appends text within a specified range.


[[Category:EDuke32 specific commands]]
[[Category:EDuke32 specific commands]]
[[Category:String manipulation]]
[[Category:String manipulation]]

Revision as of 04:20, 29 August 2020

qstrcat <quote1> <quote2>

Appends the text of <quote2> to the end of <quote1>.

Deprecated for most cases because it directly concatenates the quotes together without any space in between. To include space between the quotes, or to concatenate multiple quotes, use qsprintf. qstrncat can be used to appends text within a specified range.