User Tools

Site Tools


crpl:docs:concat

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
crpl:docs:concat [2013/01/14 19:07] – created chanicrpl:docs:concat [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-TODO+ 
 +<- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#string_commands|String Commands]] 
 +=====  concat  ===== 
 + 
 +^Arguments^Result^Notation^ 
 +|Two strings|A string that is the concatenated version of the two input strings. |''s1 s2 -- s3 ''
 + 
 + 
 +=== Description === 
 +Takes two strings from the stack and concatenates them.  
 +The result is pushed back to the stack. 
 +=== Examples === 
 +Merges "abc" and "xyz" into a single new string "abcxyz"
 +<code> 
 +ShowTraceLog 
 +"abc" "xyz" concat Trace 
 +</code>  
 + 
 +Create a unit text tooltip, based on values from variables within said unit, by concatenating values and strings together. 
 + 
 +The reason there is an endline here: "**endl**Interval: " is to add a new line to the string. 
 +<code> 
 +once 
 +   @awake 
 +endonce 
 + 
 +:awake 
 +64 ->power 
 +30 ->interval 
 +42 ->cookies 
 + 
 +"" ->tooltipText 
 +<-tooltipText "Power: " concat <-power concat ->tooltipText 
 +<-tooltipText " 
 +Interval: " concat <-interval concat ->tooltipText 
 +<-tooltipText " 
 +Cookies: " concat <-cookies concat ->tooltipText 
 + 
 +<-tooltipText SetPopupText 
 +</code>
crpl/docs/concat.1358190458.txt.gz · Last modified: 2025/02/14 14:56 (external edit)