Click or drag to resize
StringExtensionsGetStringInBetween Method
Get string in between two separators

Namespace: DrawerBackup.Native.Extensions
Assembly: DrawerBackup.Native (in DrawerBackup.Native.dll) Version: 0.0.1.1 (0.0.1.1)
Syntax
public static string[] GetStringInBetween(
	this string strSource,
	string strBegin,
	string strEnd,
	bool includeBegin,
	bool includeEnd
)

Parameters

strSource
Type: SystemString
strBegin
Type: SystemString
strEnd
Type: SystemString
includeBegin
Type: SystemBoolean
includeEnd
Type: SystemBoolean

Return Value

Type: String

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also