We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example: 123_abc, 32_def, 1_aec renamed to abc_123, def_32, aec_1. Using (1)(2) for example in search and (2)(1) in replace.
The text was updated successfully, but these errors were encountered:
This can be done with regex.
Find: ([0-9]+)_([a-z]+) Replace: \2_\1
([0-9]+)_([a-z]+)
\2_\1
This specifically applies to your example and will likely need to be modified for anything else, but it should get the gist across.
The parts in the parenthesis are capture groups and the \# references each captured group in order.
\#
Sorry, something went wrong.
Perfect.
No branches or pull requests
Example: 123_abc, 32_def, 1_aec renamed to abc_123, def_32, aec_1. Using (1)(2) for example in search and (2)(1) in replace.
The text was updated successfully, but these errors were encountered: