问题描述
Hi,
我将Asc()函数用作打击图片时遇到问题,我将像 我一样解释 每个步骤.
I have a problem with Asc() function as a blow picture, I will explain each step as I do.
首先,我将一些值转换为ASCII代码并存储在value变量中,然后检索变量的第3个位置(图片的第4行.)
并使用Asc()函数查找显示63.的结果(如第5行和第6行).
但是我尝试手动使用Chr()函数,结果变成第二行和第三行.
因此对于Asc( ˆ")函数.结果应该是63还是136? 这是错误或我的误解.
So for the Asc("ˆ") func. result should be 63 or 136?.This is a bug or my misunderstanding.
推荐答案
从描述中很难理解您想要做什么.
It is difficult to understand what you want to do from your description.
ASC函数返回ASCII(美国信息交换标准代码)代码.
The ASC function returns the ASCII ( American Standard Code for Information Interchange ) code.
请参阅此表:>>
Please see this table:>>
哪里
"A"表示ASCII码为65
"A" has the ASCII code of 65
"B" ASCII码为66,依此类推.
"B" has the ASCII code of 66 and so on.
您是要隐藏图片中的文字还是其他内容?
Are you trying to hide text in a picture or something else?
如果是这样,我可以向您展示如何在图片-图片中隐藏文本.
If so I can show you how to hide text in an image - picture.
这篇关于ASC()函数问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!