Hi All
I need the last 5 character of the file name:
1234567890 then I only need 67890
How can I subtract the information ??
René
Need the last 5 character of the file name
Re: Need the last 5 character of the file name
If you have the scripting module you can use a simple script expression:
If you don't have the scripting module you can do it with variables, but only if the name is always the same length:
[Job.NameProper:Segment="6,10"]
Code: Select all
job.getNameProper().right(5);
[Job.NameProper:Segment="6,10"]