StringMath 2.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package StringMath --version 2.1.0
NuGet\Install-Package StringMath -Version 2.1.0
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="StringMath" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StringMath --version 2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: StringMath, 2.1.0"
#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 StringMath as a Cake Addin #addin nuget:?package=StringMath&version=2.1.0 // Install StringMath as a Cake Tool #tool nuget:?package=StringMath&version=2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Creating and using a calculator
Calculator myCalculator = new Calculator();
decimal result = myCalculator.Evaluate("1 * (2 - 3) ^ 2"); // 1
// Using custom operators
myCalculator.AddOperator("abs", a => a > 0 ? a : -a);
decimal result = myCalculator.Evaluate("abs -5"); // 5
// Using custom operator precedence (you can specify an int for precedence)
myCalculator.AddOperator("max", (a, b) => a > b ? a : b, Precedence.Power);
decimal result = myCalculator.Evaluate("2 * 3 max 4"); // 8
Creating and using variables
// Creating a variables collection
Replacements variables = new Replacements
{
["a"] = 5,
["PI"] = 3.1415926535897931
};
Calculator myCalculator = new Calculator(variables); // default variables collection is optional (can still add variables without a collection)
// Replacing or creating variables
myCalculator.Replace("a", 2);
myCalculator.Replace("b", 1); // new syntax: myCalculator["b"] = 1;
decimal result = myCalculator.Evaluate("{a} + 2 * {b} + {PI}"); // 7.1415926535897931
Creating and reusing operations
myCalculator["a"] = 5;
// Creating operations
OperationInfo op = myCalculator.CreateOperation("2 * {a}");
decimal result1 = myCalculator.Evaluate(op); // 10
// Reusing the operation (improves performance)
myCalculator["a"] = 3;
decimal result2 = myCalculator.Evaluate(op); // 6
Using the static api: SMath
// Same API as a calculator instance except the Evaluate method
decimal result = SMath.Evaluate("1 + 1"); // 2
decimal result = SMath.Evaluate("1 + {myVar}", new Replacements { ["myVar"] = 1 }); // 2
Binary operators
+ (addition)
- (subtraction)
* (multiplication)
/ (division)
% (remainder)
^ (power)
log (logarithm)
max (maximum)
min (minimum)
Unary operators
- (negation)
! (factorial)
sqrt (square root)
sin (sinus)
cos (cosinus)
tan (tangent)
ceil (ceiling)
floor (floor)
round (rounding)
exp (e raised to power)
abs (absolute)
Product | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. 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.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on StringMath:
Package | Downloads |
---|---|
KS.CoreCLR
Simulates our future-planned kernel |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on StringMath:
Repository | Stars |
---|---|
miroiu/nodify
Highly performant and modular controls for node-based editors designed for data-binding and MVVM.
|
Added the ability to reuse operations.
var op = SMath.CreateOperation("2 + {a}");
var result = SMath.Evaluate(op);