Page 1 of 1

How to return the first 10 characters of a file name into a custom column

Posted: 03 Oct 2024 14:36
by Schuller
Hi ,

I'm trying to return the first 10 characters of a file name into a custom column.
Can anyone please let me know the script for this.

Thanks

Re: How to return the first 10 characters of a file name into a custom column

Posted: 03 Oct 2024 15:43
by highend

Code: Select all

return substr(<cc_name>, 0, 10);

Re: How to return the first 10 characters of a file name into a custom column

Posted: 03 Oct 2024 17:44
by Schuller
Thanks!