IngenicoLaneReceiptParser 1.0.11

dotnet add package IngenicoLaneReceiptParser --version 1.0.11                
NuGet\Install-Package IngenicoLaneReceiptParser -Version 1.0.11                
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="IngenicoLaneReceiptParser" Version="1.0.11" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IngenicoLaneReceiptParser --version 1.0.11                
#r "nuget: IngenicoLaneReceiptParser, 1.0.11"                
#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 IngenicoLaneReceiptParser as a Cake Addin
#addin nuget:?package=IngenicoLaneReceiptParser&version=1.0.11

// Install IngenicoLaneReceiptParser as a Cake Tool
#tool nuget:?package=IngenicoLaneReceiptParser&version=1.0.11                

IngenicoLaneReceiptParser

HTML parser for Ingenico TPA receipts

This project provides an HTML parsing solution that caters to Ingenico TPA receipts, allowing you to effortlessly extract relevant information from an HTML document. When a receipt event is sent to print, the information is typically embedded in HTML format, making it difficult to access and process. The parser seamlessly converts the HTML into objects, making it easier to extract specific data and streamline your printing processes.

Sample:

IngenicoLaneReceipt ingenicoLaneReceipt = new(IngenicoLaneReceipt.IngenicoLaneModel.Lane3000);

new List<string>()
{
    $@"{ingenicoLaneReceipt.ReceiptHeader.Text1}",
    ingenicoLaneReceipt.ReceiptHeader.Text2,
    ingenicoLaneReceipt.ReceiptHeader.Text3,
    ingenicoLaneReceipt.ReceiptHeader.Text4,
    ingenicoLaneReceipt.ReceiptHeader.Text5,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.ReceiptHeader.MID) ? $@"MID: {ingenicoLaneReceipt.ReceiptHeader.MID}" : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.ReceiptHeader.TID) ? $@"TID: {ingenicoLaneReceipt.ReceiptHeader.TID}" : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardSchemeDetails.AID) ? $@"AID: {ingenicoLaneReceipt.CardSchemeDetails.AID}" : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardSchemeDetails.Text1) ? ingenicoLaneReceipt.CardSchemeDetails.Text1 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardSchemeDetails.Text2) ? ingenicoLaneReceipt.CardSchemeDetails.Text2 : string.Empty,
    ingenicoLaneReceipt.CardDetails.Text1,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardDetails.Text2) ? ingenicoLaneReceipt.CardDetails.Text2 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardDetails.Text3) ? ingenicoLaneReceipt.CardDetails.Text3 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardDetails.Text4) ? ingenicoLaneReceipt.CardDetails.Text4 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.CardDetails.Text5) ? ingenicoLaneReceipt.CardDetails.Text5 : string.Empty,
    ingenicoLaneReceipt.CardDetails.Text6,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.Text1) ? ingenicoLaneReceipt.Text1 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.Text2) ? ingenicoLaneReceipt.Text2 : string.Empty,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.PaymentDetails.Amount) ? $@"AMOUNT: {ingenicoLaneReceipt.PaymentDetails.Amount.Replace("&#xa3;", "£")}" : string.Empty,
    ingenicoLaneReceipt.ReceiptFooter.Text1,
    ingenicoLaneReceipt.ReceiptFooter.Text2,
    ingenicoLaneReceipt.ReceiptFooter.Text3,
    ingenicoLaneReceipt.ReceiptFooter.Text4,
    ingenicoLaneReceipt.ReceiptFooter.Text5,
    ingenicoLaneReceipt.ReceiptFooter.Text6,
    !string.IsNullOrEmpty(ingenicoLaneReceipt.ReceiptFooter.Text7) ? ingenicoLaneReceipt.ReceiptFooter.Text7 : string.Empty,
    ingenicoLaneReceipt.ReceiptFooter.Text8,
    ingenicoLaneReceipt.ReceiptFooter.Text9,
    ingenicoLaneReceipt.ReceiptFooter.Text13,
    ingenicoLaneReceipt.ReceiptFooter.Text14,
    Environment.NewLine,
    Environment.NewLine,
    Environment.NewLine,
};
Product 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. 
.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.

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.0.11 306 10/26/2023
1.0.10 148 10/25/2023
1.0.9 169 10/25/2023
1.0.8 149 10/24/2023
1.0.7 144 10/24/2023
1.0.6 256 3/24/2023
1.0.5 312 1/9/2023
1.0.4 297 1/9/2023
1.0.3 284 1/9/2023
1.0.2 296 1/9/2023
1.0.1 305 1/9/2023
1.0.0 298 1/9/2023