51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
C# 字符转 ASCII 码,ASCII 码转字符
作者:
代码星球
发布时间:2023-04-16
阅读:0
字符转 ASCII 码
public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); int intAsciiCode = (int)asciiEncoding.GetBytes(character)[0]; return (intAsciiCode); } else { throw new Exception("Character is not valid."); } }
ASCII 码转字符
public static string Chr(int asciiCode) { if (asciiCode >= 0 && asciiCode <= 255) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); byte[] byteArray = new byte[] { (byte)asciiCode }; string strCharacter = asciiEncoding.GetString(byteArray); return (strCharacter); } else { throw new Exception("ASCII Code is not valid."); } }
本文标签:
字符
ASCII
码转
原文链接:
版权说明:
本文由作者上传,本站仅提供存储服务,转载请注明原文链接
你可能感兴趣的
PHP常见截取字符串几种方法
开发笔记
PHP
常见
截取
字符串
几种
C语言实现split以某个字符分割一个字符串
开发笔记
语言
实现
split
某个
字符
C# 分割字符串
开发笔记
分割
字符串
C++中string字符串分割实现
开发笔记
C++
string
字符串
分割
实现
Python基础——原生数据类型(字典,列表,元组,字符串)
开发笔记
Python
基础
原生
数据
类型
php使用strlen()判断中文汉字字符串长度
开发笔记
php
使用
strlen
判断
中文
JAVA字符串格式化-String.format()的使用
开发笔记
JAVA
字符串
格式化
-String.format
使用
Java中生成随机字符的方法总结
ymnets
Java
生成
随机
字符
方法
python3光学字符识别模块tesserocr与pytesseract
ymnets
python3
光学
字符
识别
模块
python3字符串与文本处理
ymnets
python3
字符串
文本
处理
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他