Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeVeSpl committed Sep 15, 2023
1 parent 1bb2ccb commit ccc090a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Documentation/BuiltInFunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ StringFunctions
* [Downcase](#Downcase)
* [Empty](#Empty)
* [EndsWith](#EndsWith)
* [EqualsIgnoreCase](#EqualsIgnoreCase)
* [Escape](#Escape)
* [Handleize](#Handleize)
* [HmacSha1](#HmacSha1)
Expand Down Expand Up @@ -956,6 +957,14 @@ bool String.EndsWith(string text, string value)
Returns a boolean indicating whether the input string ends with the specified string `value`.
[Scriban documentation](https://github.com/scriban/scriban/blob/master/doc/builtins.md#stringends_with)

#### EqualsIgnoreCase

```csharp
bool String.EqualsIgnoreCase(string text, string value)
```
Returns a boolean indicating whether the input string is equal to specified string 'value'. Comparison is case insensitive.
[Scriban documentation](https://github.com/scriban/scriban/blob/master/doc/builtins.md#stringequals_ignore_case)

#### Escape

```csharp
Expand Down

0 comments on commit ccc090a

Please sign in to comment.