User Tools

Site Tools


en:implode

Differences

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

Link to this comparison view

en:implode [2016/08/07 20:48]
admin
en:implode [2020/02/28 10:46]
Line 1: Line 1:
-===== Implode (Function) ===== 
- 
-==== Format ==== 
-**implode** ( //array_variable// )\\ 
-**implode** ( //array_variable// , //delimiter_expr// ) 
- 
-returns //string_value// 
- 
-==== Description ==== 
-Append the elements in an array into a string.  Optionally placing the //delimiter_expr// between the elements.  This is functionally the opposite of the [[Explode|Explode]] function. 
- 
-==== Example ==== 
-<code> 
-dim a$(1) 
-dim b(1) 
-a$ = Explode("How now brown cow"," ") 
-print implode(a$,"-") 
-print implode(a$) 
-b = Explode("1,2,3.33,4.44,5.55",",") 
-print implode(b,", ") 
-print implode(b) 
-</code> 
-will display 
-<code> 
-How-now-brown-cow 
-Hownowbrowncow 
-1, 2, 3.33, 4.44, 5.55 
-123.334.445.55 
-</code> 
- 
-==== See Also ==== 
-{{page>en:start#String Handling&noheader}} 
- 
-==== History ====  
-|0.9.6.57|New to Version| 
-|1.99.99.55|dimensional delimiters and list support was added| 
  
en/implode.txt · Last modified: 2020/02/28 10:46 (external edit)