You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the variables, "Match all occurrences" must be selected.
(^\w+.$)\|(^\w+$) | $2.txt | Appends ".txt" extension to existing file name only if it does not have an extension
Your program will not accept this regex.
Using a regex editor I was able to find the correct expression:
^([^.]+)$
Therefore the correct lines of text should read:
When using the variables, "Use Regular Expressions" and "Match all occurrences" must be selected.
^([^.]+)$ | $1.txt | Appends ".txt" extension to existing file name only if it does not have an extension
The text was updated successfully, but these errors were encountered:
I have tried numerous times to use the prefix listed in this line within the document:
https://learn.microsoft.com/en-ca/windows/powertoys/powerrename
When using the variables, "Match all occurrences" must be selected.
(^\w+.$)\|(^\w+$) | $2.txt | Appends ".txt" extension to existing file name only if it does not have an extension
Your program will not accept this regex.
Using a regex editor I was able to find the correct expression:
^([^.]+)$
Therefore the correct lines of text should read:
When using the variables, "Use Regular Expressions" and "Match all occurrences" must be selected.
^([^.]+)$ | $1.txt | Appends ".txt" extension to existing file name only if it does not have an extension
The text was updated successfully, but these errors were encountered: