Prefill 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Prefill --version 2.0.0
NuGet\Install-Package Prefill -Version 2.0.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="Prefill" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prefill --version 2.0.0
#r "nuget: Prefill, 2.0.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 Prefill as a Cake Addin
#addin nuget:?package=Prefill&version=2.0.0

// Install Prefill as a Cake Tool
#tool nuget:?package=Prefill&version=2.0.0

PreFill

PreFill is a project to align horizontally listed output values to right side in order to increase their legibility.

PreFill

Check out on NuGet gallery

Description

PreFill has methods to fill desired value preceeding of values to align them. Empty character, letter or number can be used to make different lenghted values align right. Supported data types: (sbyte, byte, int, uint, long, ulong, string)

PreFill is optimized for cpu-intense applications.

Listed Methods

PreFilledCustom(long number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(long? number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(long number, byte maxNumberOfDigit, char text = '')
PreFilledCustom(long? number, byte maxNumberOfDigit, char text = '')
PrefilledCustom(ulong number, byte maxNumberOfDigit, string text = "")
PrefilledCustom(ulong? number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(ulong number, byte maxNumberOfDigit, char text = '')
PreFilledCustom(ulong? number, byte maxNumberOfDigit, char text = '')

Returns prefilled value. If value is null returns only prefilling value. (string)

  • ulong?/long? number: Unsigned long, long number value or null.

  • byte maxNumberOfDigit: Maximum number of digit of numerical value.

  • string/char text: Desired value to add at left side.

PreFilledCustom(string context, int maxLength, string text = "")
PreFilledCustom(string context, int maxLength, char text = '')

Returns prefilled value. If context is null, it returns only prefilling value. (string)

  • string context: String text value.

  • int maxLength: Maximum length of text value.

  • string/char text: Desired value to add at left side.

PreFilledCustom(List<long> numberList, string text = "")
PreFilledCustom(List<long?> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')
PrefilledCustom(List<long?> numberList, char text = '')
PrefilledCustom(List<ulong> numberList, string text = "")
PrefilledCustom(List<ulong?> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')
PrefilledCustom(List<long?> numberList, char text = '')

Returns prefilled values. If element of given list is null, it returns only prefilling value for null element. (List<string>)

  • List<long?>/List<ulong?> numberList: List of signed long or unsigned long numerical values.

  • string/char text: Desired value to add at left side.

PreFilledCustom(List<string> contextList, string text = "")
PreFilledCustom(List<string) contextList, char text = '')

Returns prefilled values (List<string>)

  • List<string> contextList: List of string values.

  • string/char text: Desired value to add at left side.

PreFillCustom(long number, int maxNumberOfDigit, string text = "")
PreFillCustom(long? number, int maxNumberOfDigit, string text = "")
PreFillCustom(long number, int maxNumberOfDigit, char text = '')
PreFillCustom(long? number, int maxNumberOfDigit, char text = '')
PreFillCustom(ulong number, int maxNumberOfDigit, string text = "")
PreFillCustom(ulong? number, int maxNumberOfDigit, string text = "")
PreFillCustom(ulong number, int maxNumberOfDigit, char text = '')
PreFillCustom(ulong? number, int maxNumberOfDigit, char text = '')

Returns prefill value only. (string)

  • ulong?/long? number: Signed or unsigned long numberical value.

  • int maxNumberOfDigit: Maximum number of digit of numerical value.

  • string/char text: Desired value to add at left side.

PreFill[1-8](long number, char text = '')
PreFill[1-8](ulong number, char text = '')

Returns prefill value only. (string)

  • [1-8]: Maximum digit number of prefilled values.

  • ulong/long number: Signed or unsigned long numerical value.

  • char text: Desired value to add at left side.

PreFillCustom(string text, int maxLength, string stringValue = "")
PreFillCustom(string text, int maxLength, char charValue = '')

Returns prefill value only. (string)

  • string text: String text value.

  • int maxLength: Maximum length of string value.

  • string stringValue/char charValue: Desired value to add at left side.

Example Usage

  • PreFilledCustom(5, 4, '0') ⇒ "0005"
  • PreFilledCustom(null, 4, '0') ⇒ "0000"
  • PreFilledCustom(55, 3, ' ') ⇒ " 55"
  • PreFilledCustom("abc", 5, 'd') ⇒ "ddabc"
  • PreFilledCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {"0005", "0004", "0055", "0045", "0032", "0375"}
  • PreFillCustom(5, 4, '0') ⇒ "000"
  • PreFillCustom(55, 3, ' ') ⇒ " "
  • PreFillCustom("abc", 5, 'd') ⇒ "dd"
  • PreFillCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {" ", " ", " ", " ", " "}
  • PreFill1(5, ' ') ⇒ ""
  • PreFill2(5, ' ') ⇒ " "
  • PreFill8(5, ' ') ⇒ " "

Version History

2.0.0

  • Target framework changed from .Net Core 3.1 to .Net 7.0

1.3.1

  • PrefilledCustom methods' name changed with PreFilledCustom.

  • 1.3.0

    • GetLengthOfString() private method was throwing error if given string value is null.
    • PrefilledCustom() methods are added to support null values.
    • PrefillCustom() methods are added to support null values.
  • 1.2.0

    • Added comments to methods.
  • 1.1.0

  • 1.0.0 Initial Release

Task list

Knowns bugs

  • If length of desired text is more than one character repeatence of adding it may make result not aligned.

Licence

No licence is required.

Authors

Twitter: @enesokullu

Help

Twitter: @enesokullu

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • 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
2.2.0 225 2/23/2024
2.1.2 575 11/6/2023
2.1.1 468 10/18/2023
2.1.0 437 9/15/2023
2.0.0 497 8/26/2023
1.3.2 485 7/9/2023
1.3.0 493 6/19/2023
1.2.0 453 6/17/2023
1.1.3 509 1/11/2023

Target framework is changed from .NET Core 3.1 to .NET 7.0