@bugrahan said in A few questions about dynamic list and running.:
Google Drive
Yes its possible with google drive api >
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