资源简介
C++实现中英文与UNICODE十六进制字符串互转
实现
"中文English" --> "4e2d65870045006e0067006c006900730068"
和
"4e2d65870045006e0067006c006900730068" --> "中文English"
这么一个转换,上述的都是字符串。
附件是MFC编写的转换测试程序,及其源码。
源码在PC和WINCE下都测试通过
代码片段和文件信息
#include “StdAfx.h“
#include “IntArray.h“
CIntArray::CIntArray(void)
{
intArry = NULL;
size = 0;
}
CIntArray::~CIntArray(void)
{
if(intArry != NULL){
free(intArry);
intArry = NULL;
}
}
//********************************************************************
// Function : GetSize
// Description : get int array size
// Input : NONE
// Output : NONE
// return : int array size
//********************************************************************
int CIntArray::GetSize()
{
return this->size;
}
//********************************************************************
// Function : GetAt
// Description : get data in array
// Input : index : index must > 0 and < the array size
// Output : NONE
// return : the data in array which index is the same
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 53248 2012-04-20 12:19 Test\release\Test.exe
文件 1071 2011-12-22 15:44 Test\Test\IntArray.cpp
文件 294 2011-12-22 15:45 Test\Test\IntArray.h
文件 2709 2011-11-24 17:02 Test\Test\ReadMe.txt
文件 21630 2005-09-23 09:25 Test\Test\res\Test.ico
文件 360 2011-11-24 17:02 Test\Test\res\Test.rc2
文件 952 2012-01-13 14:41 Test\Test\resource.h
文件 135 2011-11-24 17:02 Test\Test\stdafx.cpp
文件 2489 2011-11-24 17:02 Test\Test\stdafx.h
文件 58800 2012-04-20 12:18 Test\Test\Test.aps
文件 1623 2011-11-24 17:02 Test\Test\Test.cpp
文件 429 2011-11-24 17:02 Test\Test\Test.h
文件 5457 2012-04-20 12:18 Test\Test\Test.rc
文件 5583 2012-04-20 12:17 Test\Test\Test.vcproj
文件 1413 2012-04-20 12:19 Test\Test\Test.vcproj.BRANTYOU.brantyou.user
文件 1427 2011-12-01 15:12 Test\Test\Test.vcproj.PC-20110516DYHH.brantyou.user
文件 5466 2012-04-20 12:17 Test\Test\TestDlg.cpp
文件 872 2012-04-20 12:14 Test\Test\TestDlg.h
文件 4446 2012-02-29 15:15 Test\Test\YCodec.cpp
文件 826 2012-02-29 15:15 Test\Test\YCodec.h
文件 39481 2012-01-16 15:43 Test\Test\YString.cpp
文件 4493 2012-01-16 15:31 Test\Test\YString.h
文件 877 2011-11-24 17:02 Test\Test.sln
..A..H. 24064 2012-04-20 12:19 Test\Test.suo
目录 0 2012-04-20 12:13 Test\Test\res
目录 0 2012-04-20 12:19 Test\release
目录 0 2012-04-20 12:19 Test\Test
目录 0 2012-04-20 12:19 Test
----------- --------- ---------- ----- ----
238145 28
............此处省略1个文件信息
- 上一篇:C++版五子棋程序(含源代码)
- 下一篇:C语言点阵放大英文字母
相关资源
- g711与wav互转的接口
- opencv:视频图片相互转换程序
- C++实战源码-获取字符串中英文字母个
- UTC时间和世界时区时间转换算法(u
- C语言实现字节流与十六进制字符串的
- 10进制与16进制互转
- QT5自定义中英文虚拟键盘.zip
- C++ Primer 第四版中英文对照chm文档
- ASCII与字符互转(c++)
- C++实现微软TTS文字转语音中英文切换
- [C语言]字符串处理 - ANSI - Unicode - UT
-
c++图片与ba
se64互转 - GBK_UTF8格式转换程序源代码
- C语言实现的 json格式字符串与结构体
- C++ 1.大地坐标与空间直角坐标的相互
- 灰度图像和二维数组相互转换操作
- 几种编码的相互转换
- HiRedis Redis 数据库 C++ 操作,支持 Wi
- opencv中mat与jpeg相互转换及显示代码
- C++ Primer 第四版 中英文对照版 chm格式
- 《C专家编程》中英文合集
评论
共有 条评论