StringManipulation
StringManipulation copied to clipboard
Group by first word
I have a lot of strings that needs to be grouped by their first word ex:
<string name="action__select_files">انتخاب فایلها</string>
<string name="action__yes">بله</string>
<string name="clip__delete_item">حذف</string>
<string name="clip__paste_item">چسباندن</string>
to
<string name="action__select_files">انتخاب فایلها</string>
<string name="action__yes">بله</string>
<string name="clip__delete_item">حذف</string>
<string name="clip__paste_item">چسباندن</string>
Grouped by key's first word
Quite a special use case, you will have to make it yourself.
Is there a way to do this with your plugin?
nope