Topic: Allow empty parameters
For
- String replacement
"( "str1", "str2", i1, i2, cs )"
are parameters without an value (i.e empty) not allowed?!
i.e. if i wanna search case sensitive then
%b( "FinD","replace" , , ,1 ).%e
or
%b( "FinD","replace" ,1 , ,1 ).%e
is not enough
i have to use
%b( "FinD","replace" ,1,99,1 ).%e
(99 to find all)
But
By default all occurrences are treated
and the search is case insensitive.
>By default all occurrences are treated
so ,,,1 must be enough for to search case sensitive, isn't it?
Maybe i have test the wrong way or not enough tested?
If not i wanna suggest to allow empty parameter but wrote comas only like ,,,1
If it not to many work to implement this!
stefan