Qstrcat: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
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>. | ||
Unnecessary 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]] |
Latest revision as of 03:21, 29 August 2020
qstrcat <quote1> <quote2>
Appends the text of <quote2> to the end of <quote1>.
Unnecessary 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.