StringsConcatSubstring Method

Concatenate a substring to a string including a separator.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static string ConcatSubstring(
	string text,
	string substring,
	string separator = null,
	bool allowDuplicates = true
)

Parameters

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.

Return Value

String
String with the value resulting from concatenating the substring.

See Also