• VB6转换C#2010函数替换


    VB6转换C#2010函数替换

    VB6 ---------------->C#2010

    1、InStr(strKey, " ")-->strKey.IndexOf(" ")

    InStr([start, ]string1, string2[, compare])

    返回指定一字符串在另一字符串中最先出现的位置。在字符串string1中,从start开始找string2,省略start时从string1的第1个字符开始找。找不到时,函数返回值为0,找到则返回所在位置。

    2、InstrRev("www.livebaby.cn","w")-->"www.livebaby.cn".LastIndexOf("w");

    InstrRev(string1, string2[, start[, compare]])

    返回某字符串在另一个字符串中最后出现的位置。

    这里要注意VB6是从0开始数位,C#中是从1开始数位

    VB返回结果:3

    C#返回结果:2

    3\\r\n-->System.Environment.NewLine

    System.Environment.NewLine兼容性比\r\n好

    4、IsNumeric-->自定义C#函数IsNumeric() 

     

    1 publicstaticbool IsNumeric(string str){
    2 System.Text.RegularExpressions.Regex reg =new System.Text.RegularExpressions.Regex(@"^[-]?\d+[.]?\d*$");
    3 return reg.IsMatch(str);
    4 }

    5、FreeFile可以删除的

         说明:该值表示 FileOpen 函数可用的下一个文件号。

    6、On   Error   Goto   0   关闭错误陷阱

         说明:指在发生错误时忽略其错误,继续执行程序

    7、待续...

    我来自:向东博客
  • 相关阅读:
    NKOJ P3051浇花
    Linux-Shell脚本编程-学习-2-Linux基本命令
    Linux-Shell脚本编程-学习-1-Linux基本命令
    Ubuntu下使用Git_6
    Ubuntu下使用Git_5
    电脑优化,提速
    Ubuntu下使用Git_4
    Ubuntu下使用Git_3
    Ubuntu下使用Git_2
    Ubuntu下使用Git_1
  • 原文地址:https://www.cnblogs.com/meil/p/2080304.html
Copyright © 2020-2023  润新知