[FREE] ListUtilz Extension - A powerful lists management extension

Short description

A powerful list utilities extension to work with lists with multiple functions.

Pictures of all the blocks

image
image


image

Instructions to use extension

image
Use this block to sort a given list alphabetically. It also considers integers and sort in natural sorting order.

image
Use this block to sort given list of integers in increasing order. No matter the list item is a single digit or multiple digit. It also supports negative values.

image
Sort integers within the list of strings in an ascending order.

image
Reverses the given list.


Search in a given list with a specific keyword and get all items containing the given keyword. Useful for filtering list or making search system. GetFilteredList will return filtered list directly while FilterList will return in ListFiltered event.

image
Shuffles the given list.

image
Returns duplicate items as a list.


GetOccurrences block will return the count of item in a list (how many times it is in the list) and index block will return the indices of these items.


Get integer list from 1 to given n


Get minimum and maximum number from a given integer list.

image
Get last list item

image
Converts a given list into JSON string.


Compare given two lists and returns true if matches else false.


Returns a new list containing the union of multiple lists (combines the elements from all input lists, removing any duplicates). Accepts multiple lists as input.

image
Returns a new list containing the distinct (unique) elements from the given list.

image
Returns a new list containing the intersection of given multiple lists (a new list containing the common elements present in all input lists). Accepts input as list of lists.

image
Returns a slice (part) of the given list from the start index (inclusive) to the end index (exclusive).

image
Returns a list of all permutations of the given list

image
Returns a list of possible combinations of elements from the given list and combination size.

CHANGE LOG

Added a new block FilterListAsync to filter list asynchronously.

Now FilteredList event will return filtered list as well as their indices.

Download

v3 ListUtilz.aix (20.5 KB)

Suggest me any new functions or modifications to add in this extension

25 Likes

Another great extension

1 Like

Very Useful extension :clap: :heart_eyes: thanks

1 Like

Its extension :neutral_face:, btw Thanks.

@The_K_Studio :rofl::rofl: by mistake… BTW edited :grin:

Great, keep making good extensions…

1 Like

Updated

Added a new method RemoveItems from start index to end index and return filtered list.

image

1 Like

What a great Extension … Love you

1 Like

wonderfull extension good work @The_K_Studio

1 Like

Updated

SortListAtoZ block updated with additional parameter of ignoreCase.

Great Extension You should add Filter List Condition also if you can …
In that you may filter 4 to 5 list data as users requirements.
For Example:

  1. In List Named “Status” Should ba (Active)
  2. In Fee List Fee Should Be (500)
  3. In Class Class Should be (5th)
  4. In School name School should be ( AYB)

To apply multiple filters you need to filter each list separately because each list has different list items.

And number of filter criteria differes from user to user so it can’t be predifined in the extension.

May be i will try if this can be done.

I think You should Try it , it will be best List utility extension ever if you done this Changes in it

May be Your Listutils Extension Can Do this procedure More Faster And Easier

1 Like

Can i Compare 4 or 5 lists at once to Find Duplicate ?

List intersection does not give you duplicates, it gives a new list that contains common elements from given two lists.

I will try this to implement input list as multiple lists.

Thanks i want to intersection multiple lists …

UPDATED

  1. Filter List functions updated to return result directly as well as in event.
  2. GetListIntersection function now accepts multiple lists.
  3. GetListUnion function now accepts multiple lists.
2 Likes

What a Great Work done :white_check_mark: thanks

1 Like

UPDATED

Added a new function SortStringIntegers to sort integers within the list of strings in an ascending order.

2 Likes