User Tools

Site Tools


crpl:docs:concat

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
crpl:docs:concat [2013/10/28 17:46] – modify breadcrumb to point to String Commands section Grayzzurcrpl:docs:concat [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~+
 <- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#string_commands|String Commands]] <- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#string_commands|String Commands]]
 =====  concat  ===== =====  concat  =====
Line 11: Line 11:
 The result is pushed back to the stack. The result is pushed back to the stack.
 === Examples === === Examples ===
 +Merges "abc" and "xyz" into a single new string "abcxyz".
 <code> <code>
-# Merges "abc" and "xyz" into a single new string "abcxyz"  +ShowTraceLog 
-"abc" "xyz" concat trace+"abc" "xyz" concat Trace
 </code>  </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.1382982410.txt.gz · Last modified: 2025/02/14 14:56 (external edit)