OldPhoneKeypadDecoder 1.0.0-ci.42
This is a prerelease version of OldPhoneKeypadDecoder.
dotnet add package OldPhoneKeypadDecoder --version 1.0.0-ci.42
NuGet\Install-Package OldPhoneKeypadDecoder -Version 1.0.0-ci.42
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="OldPhoneKeypadDecoder" Version="1.0.0-ci.42" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OldPhoneKeypadDecoder" Version="1.0.0-ci.42" />
<PackageReference Include="OldPhoneKeypadDecoder" />
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 OldPhoneKeypadDecoder --version 1.0.0-ci.42
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OldPhoneKeypadDecoder, 1.0.0-ci.42"
#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.
#addin nuget:?package=OldPhoneKeypadDecoder&version=1.0.0-ci.42&prerelease
#tool nuget:?package=OldPhoneKeypadDecoder&version=1.0.0-ci.42&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OldPhoneKeypadDecoder
A .NET library that converts numeric keypad sequences into text, simulating classic mobile phone text input (T9). Implements the Chain of Responsibility pattern for processing multi-press character sequences, special characters, backspace, and spaces.
Features
- Multi-press character selection (e.g., pressing '2' three times gives 'C')
- Special characters through the '1' key
- Backspace (*) and confirmation (#) functionality
- Space character through '0' key
- Pause between characters using space
- Chain of Responsibility pattern for extensible character handling
Installation
dotnet add package OldPhoneKeypadDecoder
using OldPhoneKeypadDecoder.Services;
using OldPhoneKeypadDecoder.Strategies;
// Create the decoder service
var keyLayoutStrategy = new OldPhoneKeyLayoutStrategy();
var decoderService = new OldPhoneKeypadDecoderService(keyLayoutStrategy);
// Decode input
string result = decoderService.Decode("44433555555666#"); // Returns "HELLO"
Input Format
- Numbers (2-9): Letters (press multiple times for different letters)
- 1: Special characters (&, ', ()
- 0: Space character
- *: Backspace
- #: Confirm/End input
- Space: Pause between characters
Key Mappings
- 1 → &, ', (
- 2 → A, B, C
- 3 → D, E, F
- 4 → G, H, I
- 5 → J, K, L
- 6 → M, N, O
- 7 → P, Q, R, S
- 8 → T, U, V
- 9 → W, X, Y, Z
- 0 → Space
Examples
decoderService.Decode("2#") // "A"
decoderService.Decode("22#") // "B"
decoderService.Decode("222#") // "C"
decoderService.Decode("44 444#") // "HI"
decoderService.Decode("44433 555#") // "IE"
decoderService.Decode("227#") // "B" (backspace removes 'A')
Project Structure
src/OldPhoneKeypadDecoder/
: Core librarysrc/OldPhoneKeypadDecoder.ConsoleApp/
: Console application demotests/OldPhoneKeypadDecoder.Tests/
: Unit tests
Documentation
- Source Code Documentation: Detailed architecture overview, design patterns, and component descriptions
- Testing Documentation: Detailed testing overview
Development
# Clone the repository
git clone https://github.com/thromel/OldPhoneKeypadDecoder.git
# Build the solution
dotnet build
# Run tests
dotnet test
# Run console demo
dotnet run --project src/OldPhoneKeypadDecoder.ConsoleApp
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.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 |
---|---|---|
1.0.0-ci.42 | 55 | 4 months ago |
1.0.0-ci.41 | 52 | 4 months ago |
1.0.0-ci.40 | 52 | 4 months ago |
1.0.0-ci.23 | 51 | 4 months ago |
1.0.0-ci.22 | 51 | 4 months ago |