how to move the name?
Hello,
I have the following example:
Document_NAME_XXX_YYYYYYYY_DATE_uploaded_Andrei Florin.pdf
I want to replace ''NAME'' with ''_Andrei Florin''
I have hundreds of such documents... the name variates of course.
Please help me!
Thank you in advance!
Andrei
I have the following example:
Document_NAME_XXX_YYYYYYYY_DATE_uploaded_Andrei Florin.pdf
I want to replace ''NAME'' with ''_Andrei Florin''
I have hundreds of such documents... the name variates of course.
Please help me!
Thank you in advance!
Andrei
This will do what you have requested.
Replace: _[^_]*
with: _Andrei Florin
Occurrence: 1st
Use regular expressions
Replace: _[^_]*
with: _Andrei Florin
Occurrence: 1st
Use regular expressions