You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/column_mapping_transforms.html
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,23 @@ <h2>concat_to_b<a class="headerlink" href="#concat-to-b" title="Link to this hea
82
82
</pre></div>
83
83
</div>
84
84
</section>
85
+
<sectionid="concat-two-cols">
86
+
<h2>concat_two_cols<aclass="headerlink" href="#concat-two-cols" title="Link to this heading">¶</a></h2>
87
+
<p>Concatenate the values from two columns together as strings. This transform takes
88
+
a <codeclass="docutils literal notranslate"><spanclass="pre">column_to_append</span></code> attribute, which specifies the name of the column to concatenate
89
+
to the end of the mapped column. To concatenate more than two columns, you can
90
+
use this transform multiple times in a row.</p>
91
+
<p>If either of the columns are numerical, they are automatically converted to strings
92
+
before the concatenation.</p>
93
+
<p>Maps (string | numerical) → string.</p>
94
+
<divclass="highlight-toml notranslate"><divclass="highlight"><pre><span></span><spanclass="c1"># Concatenate two columns to the end of the mapped column.</span>
0 commit comments