All ku I have 13 sheets of such formara

<string name="acc">Принято</string> Pieņemts 

As content after </string> insert before, deleting Russian translation

It was

 <string name="acc">Принято</string> Pieņemts 

But you must

 <string name="acc">Pieņemts</string> 

I have 13 such sheets, on each somewhere there are 300 variables, I’m dumb :)

thank

    1 answer 1

    Something like this:

     (<string name="acc">)\w+(</string>) (\w+) 
     $1$3$2 
    • the fact is that <string name = "acc"> everything will be different, string name = "something", string name = "something2" and so on - Peter Pavlov
    • @PeterPavlov, \w+ - Qwertiy
    • and if <string name = "invite_friend"> i.e from 2 rumor - \ w + \ w +? - Peter Pavlov
    • @PeterPavlov, and if you read Wikipedia? - Qwertiy 4:18 pm
    • Understood thanks! - Peter Pavlov