For example, there is a plain text document on the slave table in which there are numbers from 0 to 100 line by line (1,2,3, ..., 99,100). And also there is another txt doc. in which the words are the same line by line, there, for example, the word "map". Question: how through software to replace this word map (all strings that are in the doc with line numbers from the first txt?
That is, the result should be:
static void map1() ->1 static void map2() ->2 ... static void map100() ->100 In fact, the whole line is where there is a static void map_ and which digit is replaced by 1,2,3 .... That is, in the end I will receive line by line replacement with a number
map3andmap4. And in the first there are only the numbers 1, 4 and 5. What should happen at the exit? - VladD