Expressif 0.2.6
See the version list below for details.
dotnet add package Expressif --version 0.2.6
NuGet\Install-Package Expressif -Version 0.2.6
<PackageReference Include="Expressif" Version="0.2.6" />
paket add Expressif --version 0.2.6
#r "nuget: Expressif, 0.2.6"
// Install Expressif as a Cake Addin #addin nuget:?package=Expressif&version=0.2.6 // Install Expressif as a Cake Tool #tool nuget:?package=Expressif&version=0.2.6
Expressif
Expressif is the variable substitution syntax, initially designed for NBi.io.
Expressif allows you to define variables and transformation of these variables (functions), in plain text, which can then be interpreted by the engine. The syntax for the definition of the expression transforming the variable is similar to:
@myVariable | text-to-lower | text-to-pad-right(@myCount, *)
About | Quickstart | Installing | Functions and predicates
About
Continuous integration builds:
Quickstart
var expression = new Expression("text-to-lower");
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("nikola tesla"));
Some functions required arguments, you can specify them between the brackets after the function name. Note that literal textual values don't required quotes surronding the values.
var expression = new Expression("text-to-remove-chars(a)");
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("Nikol Tesl"));
You can chain the functions to apply to the initial value by using the operator pipe (|
). The functions are executed from left to right.
var expression = new Expression("text-to-lower | text-to-remove-chars(a)");
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("nikol tesl"));
It's possible to use variables as function parameters. the name of the variables must always start by an arobas (@
)
var context = new Context();
context.Variables.Add<char>("myChar", 'k');
var expression = new Expression("text-to-lower | text-to-remove-chars(@myChar)", context);
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("niola tesla"));
In addition to the variables that must be scalar values (text, numeric, dateTime ...), you can also add a property-object to the context. An property-object can be a pure C# object, a Dictionnary, a List or a DataRow. You can access the properties of the property-object based on the property's name with the syntax [property-name]
var context = new Context();
context.CurrentObject.Set(new { CharToBeRemoved = 't' });
var expression = new Expression("text-to-lower | text-to-remove-chars([CharToBeRemoved])", context);
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("nikola esla"));
or based on its position with the syntax #index
(where index is positive number).
var context = new Context();
context.CurrentObject.Set(new List<char>() { 'e', 's' });
var expression = new Expression("text-to-lower | text-to-remove-chars(#1)", context);
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("nikola tela"));
It's also possible to use a function's result as the value of a parameter for another function. To achieve this the function as a parameter must be surrounded by curly braces {...}
var context = new Context();
context.Variables.Add<int>("myVar", 6);
context.CurrentObject.Set(new List<int>() { 15, 8, 3 });
var expression = new Expression("text-to-lower | text-to-skip-last-chars( {@myVar | numeric-to-subtract(#2) })", context);
var result = expression.Evaluate("Nikola Tesla");
Assert.That(result, Is.EqualTo("nikola te"));
Installing
Install in the usual .NET fashion:
Install-Package Expressif
Supported functions and predicates
Functions
Scope | Name | Aliases |
---|---|---|
IO | file-to-creation-datetime | creation-datetime |
IO | file-to-creation-datetime-utc | creation-datetime-utc |
IO | file-to-size | size |
IO | file-to-update-datetime | update-datetime |
IO | file-to-update-datetime-utc | update-datetime-utc |
IO | path-to-directory | directory |
IO | path-to-extension | extension |
IO | path-to-filename | filename |
IO | path-to-filename-without-extension | filename-without-extension |
IO | path-to-root | root |
Numeric | null-to-zero | |
Numeric | numeric-to-add | |
Numeric | numeric-to-ceiling | ceiling |
Numeric | numeric-to-clip | |
Numeric | numeric-to-decrement | decrement |
Numeric | numeric-to-divide | divide |
Numeric | numeric-to-floor | floor |
Numeric | numeric-to-increment | increment |
Numeric | numeric-to-integer | integer |
Numeric | numeric-to-invert | invert |
Numeric | numeric-to-multiply | multiply |
Numeric | numeric-to-round | round |
Numeric | numeric-to-subtract | |
Special | any-to-any | |
Special | null-to-value | |
Special | value-to-value | |
Temporal | datetime-to-add | |
Temporal | datetime-to-ceiling-hour | ceiling-hour |
Temporal | datetime-to-ceiling-minute | ceiling-minute |
Temporal | datetime-to-clip | |
Temporal | datetime-to-date | date |
Temporal | datetime-to-first-of-month | first-of-month |
Temporal | datetime-to-first-of-year | first-of-year |
Temporal | datetime-to-floor-hour | floor-hour |
Temporal | datetime-to-floor-minute | floor-minute |
Temporal | datetime-to-last-of-month | last-of-month |
Temporal | datetime-to-last-of-year | last-of-year |
Temporal | datetime-to-next-day | next-day |
Temporal | datetime-to-next-month | next-month |
Temporal | datetime-to-next-year | next-year |
Temporal | datetime-to-previous-day | previous-day |
Temporal | datetime-to-previous-month | previous-month |
Temporal | datetime-to-previous-year | previous-year |
Temporal | datetime-to-set-time | set-time |
Temporal | datetime-to-subtract | |
Temporal | date-to-age | age |
Temporal | invalid-to-date | |
Temporal | local-to-utc | |
Temporal | null-to-date | |
Temporal | utc-to-local | |
Text | blank-to-empty | |
Text | blank-to-null | |
Text | empty-to-null | |
Text | html-to-text | |
Text | mask-to-text | |
Text | null-to-empty | |
Text | text-to-after | after |
Text | text-to-before | before |
Text | text-to-datetime | |
Text | text-to-first-chars | first-chars |
Text | text-to-html | html |
Text | text-to-last-chars | last-chars |
Text | text-to-length | length |
Text | text-to-lower | lower |
Text | text-to-mask | mask |
Text | text-to-pad-left | pad-left |
Text | text-to-pad-right | pad-right |
Text | text-to-prefix | prefix |
Text | text-to-remove-chars | remove-chars |
Text | text-to-skip-first-chars | skip-first-chars |
Text | text-to-skip-last-chars | skip-last-chars |
Text | text-to-suffix | suffix |
Text | text-to-token | token |
Text | text-to-token-count | token-count |
Text | text-to-trim | trim |
Text | text-to-upper | upper |
Text | text-to-without-diacritics | without-diacritics |
Text | text-to-without-whitespaces | without-whitespaces |
Predicates
Scope | Name | Aliases |
---|---|---|
Boolean | boolean-is-false | false |
Boolean | boolean-is-false-or-null | false-or-null |
Boolean | boolean-is-identical-to | identical-to |
Boolean | boolean-is-true | true |
Boolean | boolean-is-true-or-null | true-or-null |
Numeric | numeric-is-equal-to | equal-to |
Numeric | numeric-is-even | even |
Numeric | numeric-is-greater-than | greater-than |
Numeric | numeric-is-greater-than-or-equal | greater-than-or-equal |
Numeric | numeric-is-integer | integer |
Numeric | numeric-is-less-than | less-than |
Numeric | numeric-is-less-than-or-equal | less-than-or-equal |
Numeric | numeric-is-modulo | modulo |
Numeric | numeric-is-odd | odd |
Numeric | numeric-is-within-interval | within-interval |
Numeric | numeric-is-zero-or-null | zero-or-null |
Special | special-is-null | null |
Temporal | temporal-is-after | after |
Temporal | temporal-is-after-or-same-instant | after-or-same-instant |
Temporal | temporal-is-before | before |
Temporal | temporal-is-before-or-same-instant | before-or-same-instant |
Temporal | temporal-is-contained-in | contained-in |
Temporal | temporal-is-on-the-day | on-the-day |
Temporal | temporal-is-on-the-hour | on-the-hour |
Temporal | temporal-is-on-the-minute | on-the-minute |
Temporal | temporal-is-same-instant | same-instant |
Text | text-contains | contains |
Text | text-ends-with | ends-with |
Text | text-is-any-of | any-of |
Text | text-is-empty | empty |
Text | text-is-empty-or-null | empty-or-null |
Text | text-is-equivalent-to | equivalent-to |
Text | text-is-lower-case | lower-case |
Text | text-is-sorted-after | sorted-after |
Text | text-is-sorted-after-or-equivalent-to | sorted-after-or-equivalent-to |
Text | text-is-sorted-before | sorted-before |
Text | text-is-sorted-before-or-equivalent-to | sorted-before-or-equivalent-to |
Text | text-is-upper-case | upper-case |
Text | text-matches-date | matches-date |
Text | text-matches-datetime | matches-datetime |
Text | text-matches-numeric | matches-numeric |
Text | text-matches-regex | matches-regex |
Text | text-matches-time | matches-time |
Text | text-starts-with | starts-with |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. |
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.9.9 | 141 | 9/14/2024 |
1.9.7 | 100 | 9/9/2024 |
1.9.6 | 95 | 9/8/2024 |
1.9.5 | 95 | 9/2/2024 |
1.9.4 | 103 | 8/26/2024 |
1.9.3 | 115 | 8/26/2024 |
1.9.2 | 121 | 8/24/2024 |
1.9.1 | 119 | 8/22/2024 |
1.9.0 | 77 | 7/29/2024 |
1.8.12 | 73 | 7/29/2024 |
1.8.11 | 79 | 7/29/2024 |
1.8.10 | 98 | 5/25/2024 |
1.8.9 | 102 | 5/14/2024 |
1.8.8 | 120 | 3/18/2024 |
1.8.7 | 105 | 3/18/2024 |
1.8.6 | 123 | 3/16/2024 |
1.8.5 | 116 | 2/27/2024 |
1.8.4 | 120 | 2/22/2024 |
1.8.3 | 103 | 2/17/2024 |
1.8.2 | 126 | 2/4/2024 |
1.8.1 | 108 | 1/30/2024 |
1.8.0 | 139 | 1/13/2024 |
1.7.0 | 108 | 1/13/2024 |
1.6.2 | 118 | 1/11/2024 |
1.6.1 | 104 | 1/11/2024 |
1.6.0 | 137 | 1/7/2024 |
1.5.0 | 127 | 1/7/2024 |
1.4.8 | 124 | 1/6/2024 |
1.4.7 | 123 | 1/6/2024 |
1.4.5 | 136 | 1/6/2024 |
1.4.4 | 126 | 1/6/2024 |
1.4.3 | 144 | 1/1/2024 |
1.4.2 | 116 | 12/31/2023 |
1.4.1 | 129 | 12/30/2023 |
1.4.0 | 121 | 12/30/2023 |
1.3.0 | 120 | 12/29/2023 |
1.2.0 | 116 | 12/29/2023 |
1.1.2 | 127 | 12/28/2023 |
1.1.1 | 118 | 12/28/2023 |
1.1.0 | 123 | 12/27/2023 |
1.0.0 | 128 | 12/22/2023 |
0.8.0 | 112 | 12/22/2023 |
0.7.0 | 100 | 12/22/2023 |
0.6.0 | 127 | 12/22/2023 |
0.5.0 | 130 | 12/22/2023 |
0.4.0 | 131 | 12/21/2023 |
0.3.48 | 124 | 12/21/2023 |
0.3.47 | 172 | 12/5/2023 |
0.3.46 | 146 | 12/5/2023 |
0.3.45 | 116 | 12/5/2023 |
0.3.44 | 127 | 12/5/2023 |
0.3.43 | 148 | 12/3/2023 |
0.3.39 | 140 | 12/3/2023 |
0.3.36 | 156 | 11/9/2023 |
0.3.35 | 137 | 11/6/2023 |
0.3.34 | 152 | 9/2/2023 |
0.3.33 | 154 | 8/17/2023 |
0.3.32 | 187 | 8/14/2023 |
0.3.31 | 183 | 8/9/2023 |
0.3.30 | 166 | 8/9/2023 |
0.3.29 | 180 | 8/8/2023 |
0.3.28 | 192 | 7/1/2023 |
0.3.27 | 162 | 6/14/2023 |
0.3.25 | 209 | 3/7/2023 |
0.3.24 | 256 | 3/5/2023 |
0.3.23 | 228 | 3/5/2023 |
0.3.22 | 236 | 3/5/2023 |
0.3.21 | 235 | 3/5/2023 |
0.3.20 | 238 | 3/5/2023 |
0.3.18 | 310 | 1/3/2023 |
0.3.17 | 306 | 1/3/2023 |
0.3.15 | 306 | 12/31/2022 |
0.3.14 | 301 | 12/31/2022 |
0.3.13 | 301 | 12/30/2022 |
0.3.11 | 330 | 12/29/2022 |
0.3.9 | 293 | 12/29/2022 |
0.3.8 | 291 | 12/29/2022 |
0.3.7 | 321 | 12/29/2022 |
0.3.6 | 308 | 12/28/2022 |
0.3.5 | 304 | 12/28/2022 |
0.3.4 | 316 | 12/28/2022 |
0.3.3 | 306 | 12/28/2022 |
0.3.2 | 297 | 12/26/2022 |
0.3.1 | 315 | 12/26/2022 |
0.3.0 | 311 | 12/26/2022 |
0.2.26 | 309 | 12/24/2022 |
0.2.25 | 317 | 12/23/2022 |
0.2.24 | 317 | 12/22/2022 |
0.2.23 | 298 | 12/22/2022 |
0.2.22 | 315 | 12/21/2022 |
0.2.21 | 325 | 12/21/2022 |
0.2.20 | 342 | 12/19/2022 |
0.2.18 | 333 | 12/18/2022 |
0.2.15 | 323 | 12/18/2022 |
0.2.14 | 311 | 12/18/2022 |
0.2.13 | 307 | 12/18/2022 |
0.2.12 | 322 | 12/18/2022 |
0.2.9 | 317 | 12/11/2022 |
0.2.8 | 305 | 12/11/2022 |
0.2.7 | 299 | 12/10/2022 |
0.2.6 | 310 | 12/10/2022 |
0.2.5 | 308 | 12/10/2022 |
0.2.4 | 326 | 12/6/2022 |
0.2.3 | 308 | 12/6/2022 |
0.2.2 | 348 | 11/26/2022 |
0.2.1 | 351 | 11/22/2022 |
0.2.0 | 340 | 11/21/2022 |
0.1.17 | 357 | 11/17/2022 |
0.1.16 | 352 | 11/15/2022 |
0.1.15 | 390 | 11/13/2022 |
0.1.13 | 373 | 11/12/2022 |
0.1.11 | 341 | 11/12/2022 |
0.1.10 | 341 | 11/12/2022 |
0.1.7 | 359 | 11/12/2022 |
0.1.6 | 359 | 11/12/2022 |