Solved
Forum Discussion
Aleksandar_A
3 years agoContributor III
If you need to replace them for the target system, you can do that before the filtering using regex.
The following expression might not catch all of your scenarios but should be a good starting point:
$docname.map(x => x.replace(/(#|\/|\s){1,2}/g,'_'))
BR,
Aleksandar π
manohar
3 years agoContributor
Thank you again for your help @AleksandarAngelevski .