Delete Line from List Containing specific words
-
Looking to delete lines from my List containing specific words
First line from my list
Second line from my list
Third line from my list
etcCan I somehow find and delete the line from my list containing the word "Second" ?
Right now I can use "Delete by Value" from "Lists" module but it will delete the line only if it will match the full sentence "Second line from my list"
-
-
VAR_ARR = VAR_ARR.filter(function(e){return e.indexOf("test")==-1})
-
@Q_Q said in Delete Line from List Containing specific words:
VAR_ARR = VAR_ARR.filter(function(e){return e.indexOf("test")==-1})
@Q_Q said in Delete Line from List Containing specific words:
VAR_ARR = VAR_ARR.filter(function(e){return e.indexOf("test")==-1})
Wow, you rock! I really appreciate it!
Wanted to ask you, do you know how can I capitalize the first letter from each line from my List?
Eg.
I have this
first line from my list
second line from my list
third line from my listI want this
First line from my list
Second line from my list
Third line from my list