Removing string of numbers after name
Hi, I have several SVG files that look like this:
Rainbow-clipart-71294265
Boho-Rainbow-23713995
It has 8 random digits hyphen for each folder name, how can I remove the entire number pattern?
Rainbow-clipart-71294265
Boho-Rainbow-23713995
It has 8 random digits hyphen for each folder name, how can I remove the entire number pattern?
Reply to #1:
Hi, there are several ways to get the result you want.
1) Remove method
remove count: 9
starting at: 1
Backwards: selected
Apply to: name
2) Remove pattern method
Pattern: -(\d+)
Use regular expressions: selected
Apply to: name
3) Replace method
Replace: -(\d+)
Replace with: empty field
Use regular expressions: selected
Apply to: name
Hi, there are several ways to get the result you want.
1) Remove method
remove count: 9
starting at: 1
Backwards: selected
Apply to: name
2) Remove pattern method
Pattern: -(\d+)
Use regular expressions: selected
Apply to: name
3) Replace method
Replace: -(\d+)
Replace with: empty field
Use regular expressions: selected
Apply to: name
Reply to #2:
Thank you!!
Thank you!!