0
Guys I’m using Visual Studio 2015 and would like and would like to replace a text for after the second comma. If the ID is equal (in case 501) it replaces the translation after 2° (and before 3°)
Example:
Archive with the translations:
501
Poção Vermelha
File to be translated:
501,Red_Potion,Red Potion,xxx
Final result:
501,Red_Potion,Poção Vermelha,xxx
The comma-free file is in Textbox1 and the comma file is in Textbox2
What you are actually wanting to do, there are other more appropriate ways for you to handle languages and translations. https://msdn.microsoft.com/en-us/library/fw69ke6f.aspx
– Leandro Angelo
@Leandroangelo I want to do using the replace method
– Luiz Nascimento
You cannot do as an array?
– Pbras
That’s why this is a large text I’m editing. Each line is an element of an array.
– Luiz Nascimento