I have a question I need to code thousands of lines and instead of doing it manually I want to automate my work flow. So let me present you with some screenshots and a text example of what I am trying to achieve.
File 1 = "Blueprint": "XXX'",
File 1 has several lines of that code above.
Example Screenshot
I have a list of strings that I want to add each line to replace XXX value. I don't want my list to be pasted into a single XXX line I want to select all the lines containing XXX value and replace them with my list of strings. Each line should be placed into the XXX value itself.
Note: I understand I can replace all the "XXX" with a single replacement data but how do I replace each "XXX" with it's own unique line/data?
I attempted to do this using the visual studio code replacement but it only accepts single replacement data rather then using unique replacement line data.
Ctrl+HomeShift+Alt+Clickto place multi cursorsHome(start of the line) and thenShift+End(select every line)Ctrl+C"Blueprint": "XXX"Ctrl+Das much as needed to get the same amount of cursors, you can use key repeat.ArrowRight,ArrowLeft,Backspace,Backspace,Backspace(this deletesXXX)Ctrl+VEsc(sometimes multiple times, depends on what is shown) to get out of Multi CursorIf you have more than 10000 places you have to do it in batches.