Lists
What are lists?
Creating a list

Managing a list

Information of a list

RegEx

How to RegEx
Last updated
Was this helpful?




Last updated
Was this helpful?
Was this helpful?
[ 'A', 'B', 'CD', 'E', 'FG', 'H' ]
// 1 2 3 4 5 6 (POSITIONS)[ 'Z', 'B', 'CD', 'E', 'FG', 'H', 'X' ]
/* Changed FIRST position to "Z", push = add to last position "X"*/6 //lenght
true // list contains "A"
1 //First position of Item "A"
CD //get item number 3
E,FG,H //get sub-list from 4 to last['def']
/*This RegEx will get everything that is inside of brackets [], for multiple brackets
it will be as the next output in a list ['def', 'etc']