Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

List.DeleteColumn

Deletes a column from each line in a list.

Component Version macOS Windows Linux Server iOS SDK
List 15.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "List.DeleteColumn"; List; Separator; Column { ; NoReturnEnding } )   More

Parameters

Parameter Description Example Flags
List The list. "Hello" ¶ "World"
Separator The separator text.
Can be multiple characters.
For tab separated text, pass Char(9). For CSV separated text, pass ";" or ",".
Char(9)
Column The index of the column to compare.
Starts with 0 for first column.
0
NoReturnEnding Pass 1 to have no extra newline character on the end of the returned list. Default is 0 to include one to easily concat lists. 1 Optional

Result

Returns list or error.

Description

Deletes a column from each line in a list.

Examples

Removes second column with index 1:

MBS( "List.DeleteColumn"; "a,b,c¶1,2,3"; ","; 1)

Example result:
a,c
1,3

See also

Release notes

  • Version 15.5
    • Added List.DeleteColumn and QuickList.DeleteColumn functions.

Blog Entries

This function checks for a license.

Created 11st October 2025, last changed 11st October 2025


List.DeCombine - List.Deserialize