@YounesGa To have each thread use only 1 line, set the value "max success usage: 1", "max number of simultaneous use: 1".
This is equivalent to the fact that after the flow finishes running with a result of Success, the already used proxy line will not be used again, whereas if there is an error, it will be reused 999999999 times and only one line. for each stream
290a12f6-98cf-4378-9d4c-72a246339adb-image.png
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"
-
@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



