@Rabbi5533
Quotes are not needed in the resource. I also recommend using the “Parse CSV string” action from the “String” module.
Screenshot_1.jpg
Screenshot_2.jpg
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
etc
Can 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"
@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 list
I want this
First line from my list
Second line from my list
Third line from my list