@Implode
Syntax
@Implode(TEXT1);
@Implode(TEXTLIST1);
@Implode(TEXT1;SEPTEXT2);
@Implode(TEXTLIST1;SEPTEXT2);
Description
Joins TEXT/TEXTLIST TEXT1/TEXTLIST1 into a single TEXT . A space is inserted between all joined elements. With TEXT SEPTEXT2, a different separator text can be selected instead.
Example: @Implode(TEXT1)
TEXT1:="A A*B B*C C*D D";
@Implode(TEXT1);
returns "A A*B B*C C*D D";
Since this is not a list, TEXT1 is not changed.
Example: @Implode(TEXTLIST1)
TEXTLIST1:="A":"A*B":"B*C":"C*D":"D";
@Implode(TEXTLIST1);
returns "A A*B B*C C*D D"
The standard space character is used here as the separator text.
Example: @Implode(TEXT1;SEPTEXT2)
TEXT1:="A A*B B*C C*D D";
SEPTEXT2:="*";
@Implode(TEXT1;SEPTEXT2);
returns "A A*B B*C C*D D"
A single asterisk "*" is used here as the separator text; however, since this is not a list, TEXT1 is not changed.
Example: @Explode(TEXTLIST1;SEPTEXT2)
TEXTLIST1:="A A":"B B":"C C":"D D";
SEPTEXT2:="*";
@Implode(TEXTLIST1;SEPTEXT2);
returns "A A*B B*C C*D D";
A single asterisk "*" is used here as the separator text.
Note : This text was machine-translated and may contain inaccuracies.
