⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • How do comparisons work in codes?
  • How do I check if one list contains another?
  • How to turn off where by the conditions
  • The insert line has no id
  • How to create lists fast
  • How do I take a row from a table and then get data from it?
  • What are associated array lists?
  • Specifying a field name by code, specifying a line of code by code?
  • A list of lists and turning it into a list
  • How do I sequentially go through the list and complete it or overwrite the values?
  • How do I filter and sort a list or a list of associated arrays?
  • Getting information about manual values, tree level, selects
  • How do while and var work? Replacing with listReplace
  • How to optimize the execution of the same code with variables passed to it?
  • How to use cond for condition?
  • How do I use the value of the previous row to calculate the current one?
  • Why do I need a column-by-column recalculation in the calculated and temporal tables?
  • How do I use the previous value in codes and combine manual input and code?
  • Row and rowList operations
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • A list of lists and turning it into a list

    List several ways to get a list of lists

    1. Let's take selectList by the Select field with multiple values.

    2. Let's take a column from $rowlist[[lists]] where each row contains lists.

    How do I quickly turn a list of lists into one list by connecting them one by one?

    For this, listTrain is used — it concatenates lists into one list.

    id field
    0 ["a","b","c"]
    1 ["d","e","f"]
    2 ["h","j","c"]

    For example, such code based on this table:


    =:
    listTrain(list: $sel) sel: selectList(table: $#ntn; field: 'field'; order: 'id' asc) // Result: ["a","b","c","d","e","f","h","j","c"]

    How do I turn a list into text, with each item on a new line?

    There is a function similar in name to listTrainlistJoin.

    It performs a different action — it turns a list into text.

    For example, if you need to send a list taken through selectList as text for printing, you can do this using listJoin.

    In the str parameter, you can pass a glue — something that will join the elements of the list. If we want each subsequent element in the resulting text to be on a new line:


    =:
    listJoin(list: $list; str: $#nl) list: selectList(table: 'table'; field: 'field'; where: 'status' = "sold")

    How do I turn delimited text into a list?

    There is a reverse function strSplit, which turns text into a list, using separator.

    For example, we have the value 23-4, which we obtained inside a cycle through:

    =: str`$#nci + "-" + #id`
    
    

    So the first digit in this value is the cycle number, and we need to get this number:


    =:
    $split[0] split: strSplit(str: #value; separator: "-")

    And if we need the row number:


    =:
    $split[1] split: strSplit(str: #value; separator: "-")