Could we have a option to leave only a single space between words?
Could we have a option to leave only a single space between words?
Thank you this will be most useful
I have this problem right now. for e.g.
BAS .DE TSD.DE
C TEE .DE
I want to make it to because
BAS.DE,TSD.DE,C,TEE.DE
I tried using replace text. however it doesn't allow me to replace a "space"
in notepad, if i do the following
1. replace <space>. with .
2. replace <space> with ,
it will become the results as shown.
How to get the results from your software (instead of directing it to notepad)
az
In WinAutomation <space> can be represented with %" "%. I think there is a knowledge base article somewhere about how you can use space and blank in WinAutomation
==Dedicated Automation Solutions==
Also (from the KB article) an empty string can be representing by %""%.
Kim C.
Virginia, USA
There is a very easy regular expression that allows you to do that. All you have to do is use the "Replace Text" action with the following options:
- "Text To Parse": The variable that contains the text that you want to fix.
- "Text To Find": (\s)+
- "Replace With": $1
- "Use Regular Expressions for find and replace": Checked
The output variable (default %Replaced%) will contain the text with a single space replacing all series of space keystrokes.
==Dedicated Automation Solutions==
==Dedicated Automation Solutions==