I'm looking to replace all the underscore (_
) characters between the first pair of double quotes ("
) with full stops (.
) in this .xml
I've used this regex android:name="([A-Za-z0-9_.]+)"
and got the selection android:name="com_android_contacts"
, but how do I change the _
into .
within this selection?
<package-redirections android:name="com_android_contacts" android:resource="@xml/com_android_contacts" android:minSdkVersion="16" />
to
<package-redirections android:name="com.android.contacts" android:resource="@xml/com_android_contacts" android:minSdkVersion="16" />
Thank you.