gpt4 book ai didi

c# - VB6 到 C# : Loop or Index Issue?

转载 作者:行者123 更新时间:2023-11-30 22:18:22 25 4
gpt4 key购买 nike

我有一个旧的 VB6 项目,我正在将其转换为 C#。我有一个字符串。我正在验证,一次 1 个字符,它只包含 [E0-9.+-]

这是旧的 VB6 代码:

sepIndex = 1

Do While Mid(xyString, sepIndex, 1) Like "[E0-9.+-]"
sepIndex = sepIndex + 1
Loop

然后我使用索引号计算同一字符串的Left,并将其转换为 double 。使用 Right,然后我将字符串剪切成我想要的字符串的剩余部分:

xFinal = CDbl(left(xyString, sepIndex - 1))
xyString = LTrim(right(xyString, Len(xyString) - sepIndex + 1))

这在 VB 中非常有效,我没有遇到任何问题。在 C# 中是不同的。知道在 C# 中模拟 Left/Mid/Right 的唯一方法是创建我自己的函数,我这样做了(我的 Utils 命名空间的一部分):

public static string Mid(string param, int startIndex)
{
try
{

//start at the specified index and return all characters after it
//and assign it to a variable
string result = param.Substring(startIndex);
//return the result of the operation
return result;
}
catch
{
return string.Empty;
}
}

public static string Right(string param, int length)
{
try
{
//start at the index based on the lenght of the sting minus
//the specified lenght and assign it a variable
string result = param.Substring(param.Length - length, length);
//return the result of the operation
return result;
}
catch
{
return string.Empty;
}
}
public static string Left(string param, int length)
{
try
{
//we start at 0 since we want to get the characters starting from the
//left and with the specified lenght and assign it to a variable
string result = param.Substring(0, length);
//return the result of the operation
return result;
}
catch
{
return string.Empty;
}
}

据我所知,我已将代码从 VB6 转换为 C#。问题是,当它最终设置 xyString 时,它在错误的位置剪切字符串,并且仍然在 xFinal 中留下我想要的尾随字符。

据我所知,这可能是一个索引问题(我知道在 C# 中,Substring 是基于 0 的,所以我将 sepIndex 更改为值0), 或者循环结构错误的问题。

这是转换后的代码,我希望我能对这里发生的事情有所了解:

sepIndex = 0;

while (Regex.IsMatch(Utils.Mid(xyString, sepIndex, 1), "[E0-9.+-]"))
{
sepIndex++;
}

xFinal = Convert.ToDouble(Utils.Left(xyString, sepIndex - 1)); // - 1
xyString = Utils.Right(xyString, xyString.Length - sepIndex + 1).TrimStart(' '); // + 1

编辑

这已经解决了。我只是从我的 Utils.Left 函数中删除了 +1 和 -1,它返回了正确的字符串。感谢您的投入。

最佳答案

似乎只是带有负条件的 RegEx 数学 - “[^E0-9.+-]”:

 var sepIndex = Regex.Match(xyString, @"[^E0-9\.+-]+").Index;

如果您需要手动获取单个字符,最简单的方法是从字符串中获取单个字符而不进行修剪:

  // replace Utils.Mid(xyString, sepIndex, 1) with
xyString[sepIndex]

关于c# - VB6 到 C# : Loop or Index Issue?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16139442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com