Replaces whitespace characters in the input text with specified character(s).
Syntax
JoinWords(text, joiner)
Parameters
- text
- Text to be joined.
- joiner
- Character(s) to insert between words of Text.
Return Value
A version of text with each space replaced by joiner.
Remarks
Leading and trailing whitespace is not affected.
Examples
CopyHyphenate dictated text
Compound That = Dictation.Replace(String.JoinWords(Dictation.Get(), "-"));
Examples
CopyRemove spaces in dictated text
Compound That = Dictation.Replace(String.JoinWords(Dictation.Get(), ""));
Assembly: VocolaFunctionLibrary (Module: VocolaFunctionLibrary) Version: 3.1.1.0 (3.1.1.0)