- Code: Select all
brc /replaceci:-:_
it works perfectly.
but if instead of the minus sign, i want to replace the "space" character, i'll receive
- Code: Select all
Unrecognised Replace Syntax: - Correct syntax is /replaceci:Replace:With
Unrecognised Parameter: :_
Unrecognised Argument: _
error

I've tried this, with regex:
- Code: Select all
brc /REGEXP:\s+:_
but a file like
- Code: Select all
a file with many spaces.com
- Code: Select all
_.com
- Code: Select all
a_file_with_many_spaces.com
... can someone help?

UPDATE!
ok, yes, I can!
reading a post in this forum i've unterstand that's possible to use the " character!
so the solution is as follows:
- Code: Select all
BRC /TIDYDS /REPLACECI:" ":"_" /nodupe /execute
and this is PERFECT!!!!