RPutilities.ExtractString 1.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package RPutilities.ExtractString --version 1.0.4                
NuGet\Install-Package RPutilities.ExtractString -Version 1.0.4                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RPutilities.ExtractString" Version="1.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RPutilities.ExtractString --version 1.0.4                
#r "nuget: RPutilities.ExtractString, 1.0.4"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RPutilities.ExtractString as a Cake Addin
#addin nuget:?package=RPutilities.ExtractString&version=1.0.4

// Install RPutilities.ExtractString as a Cake Tool
#tool nuget:?package=RPutilities.ExtractString&version=1.0.4                

Fuctions List:

- getString(string source, string StrStart, string StrEnd)
- getString(string source, string StrStart, int len)

Usage:

Get string between 2 word provided from source string (2 Methods):

- Method 1: get specific string between 2 words
	- getString(string source, string StrStart, string StrEnd)
		* source = provide source string where
		* StrStart = provide specific word/string 
		* StrEnd = provide specific word/string 

		ex.:
			string Data="this is example string for getString function";
			string output = ExtString.getString(Data, "this is","for getString");

			Output will be: " example string "

- Method 2: get ending string from provided string starting from specific word.
	- getString(string source, string StrStart, int len)
		* source = provide source string where
		* StrStart = provide specific word/string 
		* StrEnd = provide source string length

		ex.:
			string Data="this is example string for getString function";
			string output = ExtString.getString(Data, "this is",Data.Length);

			Output will be: " example string for getString function"
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 95 8/26/2024
1.0.4 104 8/23/2024
1.0.3 101 8/21/2024
1.0.2 102 8/21/2024
1.0.0 105 8/21/2024