VBS实现半角字符转全角字符

标签: , , , ,

一个简单的VBS函数,用来把半角字符转为全角字符。

url = "https://demon.tw"
WScript.Echo url
WScript.Echo Half2Full(url)

Function Half2Full(ByVal s)
    'By Demon
    'https://demon.tw
    Dim i
    For i = &H0021 To &H007E
        s = Replace(s, ChrW(i), ChrW(i + &HFEE0))
    Next
    Half2Full = s
End Function
赞赏

微信赞赏支付宝赞赏

随机文章:

  1. Unable to find the socket transport "ssl" – did you forget to enable it when you configured PHP?
  2. VbsEdit正版序列号
  3. PathFindFileName函数,由文件路径获得文件名
  4. 用VBS监视进程创建和删除
  5. ass2srt.vbs(ass/ssa批量转换srt)

一条评论 发表在“VBS实现半角字符转全角字符”上

  1. […] « VBS实现半角字符转全角字符 […]

留下回复