Str 0.15.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Str --version 0.15.0
                    
NuGet\Install-Package Str -Version 0.15.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="Str" Version="0.15.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Str" Version="0.15.0" />
                    
Directory.Packages.props
<PackageReference Include="Str" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Str --version 0.15.0
                    
#r "nuget: Str, 0.15.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.
#:package Str@0.15.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Str&version=0.15.0
                    
Install as a Cake Addin
#tool nuget:?package=Str&version=0.15.0
                    
Install as a Cake Tool

Str

Str on fuget.org code size license

Str is an F# extension and module library for System.String It also works with Fable.

Logo

It Includes:

  • A Str module that has all methods from the String type as functions, and more. Adapted and extended from FSharpX

  • A Computational Expressions str that can be used build up strings ( using a StringBuilder internally).

  • Extension members on Str like .Get .First .Last .SecondLast and more. With nicer IndexOutOfRangeExceptions that include the bad index and the actual size.

  • Extensive Tests

Usage

Just open the namespace

open Str

this namespace contains:

  • a module also called Str
  • a Computational Expressions called str
  • this will also auto open the extension members on System.String

then you can do:

let hello = // "Hello, World !!!"
    str {
        "Hello"
        ','
        " World "
        for i in 1..3 do
            "!"
    }

License

MIT

Test

All Tests from the from FSharp.Core's Array module ported and adapted to run in both javascript and dotnet. go to the tests folder

cd Tests

For testing with .NET using Expecto run

dotnet run

for testing with Fable.Mocha run

npm test

Changelog

0.15.0

  • implementation ported from FsEx
  • added more tests
Product 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 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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Str:

Package Downloads
Partas.Feliz.Generator

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.23.0 322 3/13/2026
0.22.0 275 2/8/2026
0.21.0 897 11/30/2025
0.20.0 208 10/11/2025
0.19.0 674 2/21/2025
0.18.0 610 10/28/2024
0.17.2 157 10/26/2024
0.17.0 517 9/20/2024
0.16.0 145 9/19/2024
0.15.0 614 2/25/2024

- implementation ported from FsEx
   - added more tests