StringsDecomposeSubstrings Method
Break a text into 2 substrings using a keyword.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static void DecomposeSubstrings(
string text,
string key,
bool findLastKey,
out string beforeKey,
out string afterKey
)
Public Shared Sub DecomposeSubstrings (
text As String,
key As String,
findLastKey As Boolean,
<OutAttribute> ByRef beforeKey As String,
<OutAttribute> ByRef afterKey As String
)
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.