I want to support android RTL and want a quick way to add support RTL in a bunch of xml
so essentially what i want is to replace
android:paddingLeft = 10dp < !-- here 10dp can be anything else -->
with
android:paddingLeft = 10dp
android:paddingStart = 10dp
I have seen multiple examples with grep and sed which can do text replace, but here i need to extra text to be retained and copied in the next line as well..
I am sure i can do this in notepad++ and/or write a simple java code.. but looking for a simple solution.