StringsDecomposeSubstrings Method

Break a text into 2 substrings using a keyword.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static void DecomposeSubstrings(
	string text,
	string key,
	bool findLastKey,
	out string beforeKey,
	out string afterKey
)

Parameters

text  String
Text to decompose.
key  String
Keyword used to decompose into strings.
findLastKey  Boolean
Indicates whether to search for the last key.
beforeKey  String
Substring with the text before the key.
afterKey  String
Substring with the text after the key.

See Also