本文介绍了拦截Unicode ASCII“194 160”至“32”。 [空间]到[空间]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

虽然这与Access有关,但我相信因为我会通过编程解决这个问题,所以我应该在这里发布这个问题。


数据来自中国,所以我假设他们使用的是非标准键盘。因此,他们的一些数据具有"194 160"。对于空格而不是"32"


我假设我可以使用DAO并使用


x = char(194)& ch(160)
$
(从[TABLE]中选择[项目] [项目]类似'*"& x&" *'")

然后


将rst(0)转换为ASCII。


和somekind作为替换函数(190 174)与32?





此解决方案是否有效?

解决方案

Although this pertains to Access, I believe that because I will solve this with programming, I should post this question here.

The data is coming from china, so I assume they are using non-standard keyboards. So some of their data has "194 160" for the spaces, rather than "32"

i assume I could use DAO and use

x = char(194) & ch(160)
("Select [ITEM] from [TABLE] WHERE [ITEM] IS LIKE '*" & x & "*'")

Then something like

convert rst(0) to  to ASCII.

and somekind as function to replace (190 174) with 32?

Would this solution work?

解决方案


这篇关于拦截Unicode ASCII“194 160”至“32”。 [空间]到[空间]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 13:10