我正在研究一个宏,它需要能够检查并确保特定行上的字符在完成表单之前应该是什么。
我在哪里或如何找到这样做的信息?
我已尝试使用命令"Left(#of line ,1)"
,此时我还没有让它返回任何内容。
答案 0 :(得分:0)
我假设你在字符串中有这个文本。如果错误,请回答我的回答 您可以使用正则表达式与字符串进行比较,如下所示:
If Regex.IsMatch(MyString, *.{X}Y) Then
'You have to manually replace X for the number of characters before the character you scan for
'You have to manually replace Y for the-said character it is supposed to be
有关正则表达式的更多信息,请查看http://www.codeproject.com/Articles/9099/The-Minute-Regex-Tutorial。
如果您只想在字符串中占一行:
TheLine = split(MyString,Environnement.Newline)([Line Number])