Convert a string into BASE62(将字符串转换为 BASE62)
问题描述
我正在寻找将字符串转换为 BASE62 的 c# 代码,如下所示:
http://www.molengo.com/base62/title/base62-encoder-decoder
我需要那些用于 URL 编码的编码和解码方法.
BINARY to TEXT 编码方案的背景:
https://en.wikipedia.org/wiki/Base62
https://en.wikipedia.org/wiki/Base64
BASE62编码方案的好解释:
https://www.codeproject.com/Articles/1076295/Base-Encode
试试这里提供的 C# 库,它添加了一些扩展方法,允许您将字节数组与 BASE62(二进制到文本编码方案)相互转换.
github上有很多base62库,看看:
- https://github.com/JoyMoe/Base62.Net
- https://github.com/ghost1face/base62
- https://github.com/rossdempster/base62csharp
- https://github.com/renmengye/base62-csharp(以下声明它不起作用...向他们提出任何问题)
如果您的源数据包含在字符串"中,则那么你首先需要转换你的字符串".到一个合适的字节数组.
但要小心,使用正确的字符串到字节转换调用......因为您可能希望字节是 ASCII 字符或 Unicode 字节流等,即 Encoding.GetBytes(text)
或 System.Text.ASCIIEncoding.ASCII.GetBytes(text);
等
byte[] bytestoencode = .....string encodingasBASE62 = bytestoencode.ToBase62();......byte[] bytesdecoded = encodeasBASE62.FromBase62();
I'm looking for the c# code to convert a string into BASE62, like this:
http://www.molengo.com/base62/title/base62-encoder-decoder
I need those encode and decode-methods for URL-Encoding.
Background on BINARY to TEXT Encoding schemes:
https://en.wikipedia.org/wiki/Base62
https://en.wikipedia.org/wiki/Base64
Good explanation of the BASE62 encoding scheme:
https://www.codeproject.com/Articles/1076295/Base-Encode
Try the C# libraries available here which adds some extension methods to allow you to convert a byte array to and from BASE62 (binary-to-text encoding schemes).
Plenty of base62 libraries on github, have a look:
- https://github.com/JoyMoe/Base62.Net
- https://github.com/ghost1face/base62
- https://github.com/rossdempster/base62csharp
- https://github.com/renmengye/base62-csharp (claims below that it doesn't work...raise any issues with them)
If your source data is contained in a "string" then you would first need to convert your "string" to a suitable byte array.
But be careful, to use the correct string to byte conversion call....as you may want the bytes to be the ASCII characters, or the Unicode byte stream etc i.e. Encoding.GetBytes(text)
or System.Text.ASCIIEncoding.ASCII.GetBytes(text);
, etc
byte[] bytestoencode = ..... string encodedasBASE62 = bytestoencode.ToBase62(); ..... byte[] bytesdecoded = encodedasBASE62.FromBase62();
这篇关于将字符串转换为 BASE62的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将字符串转换为 BASE62


- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 使用 rss + c# 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01