SeriesIDParser 10.1.2

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

// Install SeriesIDParser as a Cake Tool
#tool nuget:?package=SeriesIDParser&version=10.1.2

For .Net Core support check SeriesIDParserCore (SeriesIDParserCore)

Supported by JetBrains (https://www.jetbrains.com/)
Supported by Atlassian (https://www.atlassian.com/)


Parses series or movie strings to detailed object.

Input: "Knight.Rider.S01E01E02.Die.grosse.Duerre.German.DVDRip.AAC.XviD-c0nFuSed.mkv"
The output would be a object like that:

SeriesID (object)
|-> FullTitle -> Knight.Rider.S01E07.Die.grosse.Duerre (string)
|-> SeriesTitle -> Knight.Rider (string)
|-> EpisodeTitle-> Die.grosse.Duerre (string)
|-> State -> OK_SUCCESS (Flagable Enum)
|-> IsSeries -> true (bool)
|-> IsMultiEpisode -> true (bool)
|-> OriginalString-> Knight.Rider.S01E07.Die.grosse.Duerre.German.DVDRip.XviD-c0nFuSed.mkv (string)
|-> ParsedString -> Knight.Rider.S01E07.Die.grosse.Duerre.DVDRip.German.mkv (string)
|-> RemovedTokens -> {German, DVDRip, XviD} (string-list)
|-> Season -> 1 (int)
|-> DetectedOldSpacingChar -> '.' (char)
|-> ProcessingDuration -> (TimeSpan)
|-> Episodes -> 1, 2 (int list)
|-> IDString -> S01E07 (string)
|-> Resolutions -> {SD_Any} (enum list)
|-> Year -> 1982 (int)
|-> VideoCodec -> XviD (string)
|-> AudioCodec -> AAC (string)
|-> ReleaseGroup -> c0nFuSed (string)
|-> FileInfo -> OBJECT (FileInfo)
|-> ParserSettingsUsed -> OBJECT (ParserSettingsUsed)
|-> Is3D -> true (bool)
|-> DimensionalType -> Dimension_3DHSBS (Enum)

Check "Project Site" link on the left for the GitHub project site.
Icon designed by Madebyoliver from Flaticon

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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

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
12.1.0 82 2/4/2024
12.0.2 70 2/3/2024
12.0.1 66 2/3/2024
12.0.0 66 2/3/2024
11.0.0 567 2/24/2021
10.3.0 708 3/18/2019
10.2.0 639 2/23/2019
10.1.2 986 9/3/2017
10.1.1 915 9/3/2017
10.1.0 960 9/3/2017
10.0.0 967 7/22/2017
9.2.0 1,011 4/14/2017
9.1.1 1,001 1/24/2017
9.1.0 1,033 1/24/2017
9.0.0 1,017 1/3/2017
8.2.0 1,065 12/24/2016
8.1.1 1,004 11/29/2016
8.1.0 1,019 11/27/2016
8.0.0 1,010 11/26/2016
7.0.1 1,029 10/16/2016
7.0.0 999 10/16/2016
6.1.0 1,027 10/5/2016
6.0.0 1,324 9/17/2016
5.2.1 1,027 8/12/2016
5.2.0 1,035 8/12/2016
5.1.0 1,001 8/12/2016
5.0.1 989 8/11/2016
4.0.3 1,165 7/30/2016
4.0.2 1,147 7/30/2016
4.0.1 1,157 7/30/2016
4.0.0 1,130 7/30/2016
3.0.0 2,137 7/29/2016
2.2.4 1,231 7/29/2016
2.2.3 1,255 7/29/2016
2.2.2 1,235 7/29/2016
2.2.1 1,235 7/29/2016
2.2.0 1,670 7/29/2016

# Changelog #



##10.1.0 (2017-09-03)##
###New###
- The function "ParsePath" now uses FileInfo internal and set it to the result

###Fix###
- Fixed an error where the FileInfo-object get's lost if the FileInfo functions are used


---



##10.0.0 (2017-07-22)##
###New###
- Now you can easily write your own modules directly inside your own application without the need to check out my entire project
- ParserSetting List<ICoreParser> DisabledCoreParserModules added to disable the default modules if you want to disable them or replace them with your own
- DefaultCoreParserModules and the ICoreParser-interface are now public that you can work with them
- XML (De)Serializer changed charset from unicode to utf8. You mey want/need to convert your settings file
- XML (De)Serializer extension to support de/serialization of interface lists
- Added four new Unit Tests to cover new features and changes. Now 92 tests included

###Fix###
-