I'm looking to figure out how to use regular expressions to swap three sections of text separated by quotes/commas. For the purpose of this question I'll call them strings, though I'm not sure if that would be correct. An example is below:
"TEXT_MAP_CENTER","中央地点","Center of Map" I need to swap the Japanese text in the second string with the English in the first, so it reads:
"TEXT_MAP_CENTER","Center of Map","中央地点" This is just one line of about 4300+ and each string is unique. Thankfully, in this particular file each line is always three strings. There is a second file I need to do this in in which the text wraps.
In order to do this quickly I understand that there are ways to do this using regular expressions, but given that this isn't my normal area of expertise I'm having a real hard time with it. How might I go about doing this?