@Q_Q said in Delete Line from List Containing specific words:
@andreiem f8a6ae76-4bf2-4796-82db-4e4b44f090aa-image.png
VAR_ARR = VAR_ARR.filter(function(e){return e.indexOf("test")==-1})
b7cac97f-a64c-4f27-9602-52faf84ea78c-image.png
12c61160-245b-42e3-ba09-4d44089b6cb9-image.png
218f5c3f-87e9-4b7b-ae20-dd8b49c326dc-image.png
@Q_Q said in Delete Line from List Containing specific words:
@andreiem f8a6ae76-4bf2-4796-82db-4e4b44f090aa-image.png
VAR_ARR = VAR_ARR.filter(function(e){return e.indexOf("test")==-1})
b7cac97f-a64c-4f27-9602-52faf84ea78c-image.png
12c61160-245b-42e3-ba09-4d44089b6cb9-image.png
218f5c3f-87e9-4b7b-ae20-dd8b49c326dc-image.png
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