StringsConcatSubstring Method
Concatenate a substring to a string including a separator.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string ConcatSubstring(
string text,
string substring,
string separator = null,
bool allowDuplicates = true
)
Public Shared Function ConcatSubstring (
text As String,
substring As String,
Optional separator As String = Nothing,
Optional allowDuplicates As Boolean = true
) As String
- text String
- Initial string.
- substring String
- Final string.
- separator String (Optional)
- Separator character.
- allowDuplicates Boolean (Optional)
- Indicates whether to allow duplication of substrings in the resulting string.
StringString with the value resulting from concatenating the substring.