Is this possible ? inserting values randomly selected from a list
Alright let me try to explain
Here my article
Line 1
Line 2
Bla bla bla
this_will_be_replaced_with
Ok here my list saved in notepad and lets say file name is myLines.txt
notepad_Line_1
notepad_Line_2
notepad_Line_3
notepad_Line_4
notepad_Line_5
Now the software will read this saved list all lines randomly and replace it with this_will_be_replaced_with
so my new article will become
Line 1
Line 2
Bla bla bla
notepad_Line_2
notepad_Line_3
notepad_Line_1
notepad_Line_5
notepad_Line_4
If possible how can i do that ? thank you very much
Also can we say pick x number of ?
Here my article
Line 1
Line 2
Bla bla bla
this_will_be_replaced_with
Ok here my list saved in notepad and lets say file name is myLines.txt
notepad_Line_1
notepad_Line_2
notepad_Line_3
notepad_Line_4
notepad_Line_5
Now the software will read this saved list all lines randomly and replace it with this_will_be_replaced_with
so my new article will become
Line 1
Line 2
Bla bla bla
notepad_Line_2
notepad_Line_3
notepad_Line_1
notepad_Line_5
notepad_Line_4
If possible how can i do that ? thank you very much
Also can we say pick x number of ?
Comments
#file_links[c:/images.txt,33,S]
here
#file_links[c:/links_list.txt,max lines,L]
it is supposed to mix lines and select all of them
i counted \r\n count with notepad++ and it is correct
encoding is utf8
they have shuffle feature such as
line 1 {great line|awesome line}
line 2 {super line|extreme line}
loaded the project, copied the file to c:\ and hit TEST...
So all working as it should.
it is supposed to mix lines then write all of them so their position will be changed but still there will be 1 time only from each one of them
you can very easily implement it as an option
randomize list first then select number of line randomly
so no duplicate line selected
currently it duplicates same message which is a bad thing