-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Sometimes underline char is duplicated #26
Comments
But |
It is because of the way python's >>> import re
>>> re.findall(r'(.*)', 'abcde')
['abcde', ''] The empty string in the result is causing the double underscore. |
Thanks for the answer! But am not sure whether such behavior is intuitive. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OS version: Linux Mint 20.2 Cinnamon
Bulky version: 1.7
Steps to reproduce:
1
and2
names respectively.(.*)
and\1_
intoFind
andReplace
fields respectively. (Replace mode isName only
)1__
and2__
names respectively.The text was updated successfully, but these errors were encountered: