A Sandcastle Documented Class Library
StringExtensionsGetStringBetween Method |
The GetStringBetween() method takes input string and returns string between
parsed start and end strings.
Namespace: StringConvertions
Assembly: StringConvertions (in StringConvertions.exe) Version: 1.0.0.0 (1.0.0.0)

public static string GetStringBetween( this string input, string startString, string endString, int startFrom = 0 )
<ExtensionAttribute> Public Shared Function GetStringBetween ( input As String, startString As String, endString As String, Optional startFrom As Integer = 0 ) As String
public: [ExtensionAttribute] static String^ GetStringBetween( String^ input, String^ startString, String^ endString, int startFrom = 0 )
[<ExtensionAttribute>] static member GetStringBetween : input : string * startString : string * endString : string * ?startFrom : int (* Defaults: let _startFrom = defaultArg startFrom 0 *) -> string
Parameters
- input
- Type: SystemString
Takes String parameter. - startString
- Type: SystemString
Start string takes String parameter. - endString
- Type: SystemString
End string takes String parameter. - startFrom (Optional)
- Type: SystemInt32
Takes Integer parameter for starting substring position.
Return Value
Type: StringReturns substring from input string between parsed start and end strings.
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).