Dear LF Team
how to change following value using Quick field Substitution.
value : ABC<XYZ<TEST<<<<
i use \W and got the value :ABCXYZTEST
but i want the value like : ABC XYZ TEST
any idea how to do it ?
Thank You.
Best Regards
Mazahir Naya
Dear LF Team
how to change following value using Quick field Substitution.
value : ABC<XYZ<TEST<<<<
i use \W and got the value :ABCXYZTEST
but i want the value like : ABC XYZ TEST
any idea how to do it ?
Thank You.
Best Regards
Mazahir Naya
Just replace the "<" character with a space. You may have to run the results through a pattern matching process to strip out the trailing spaces.
Or you could replace ([A-Z]+)<([A-Z]+)<([A-Z]+)<+ with ${1} ${2} ${3} (using match groups).
Dear Miruna
Thank you very much for reply i solve the problem using Substitution
" [^ABCDEFGHIJKLMNOPQRSTUVWXYZ]" with Blank Space
Best Regards
Mazahir Naya
Yeah, that would work too. You could shorten it to [^A-Z] and it will have the same trailing spaces issue as my first suggestion.