Visual Basic Mid 函数

定义和用法

Mid 函数可从字符串中返回指定数目的字符。

提示请使用 Len 函数来确定字符串中的字符数目。

语法
  1. Mid(string,start[,length])
参数描述
string必需的。从其中返回字符的字符串表达式。如果字符串包含 Null,则返回 Null
start必需的。规定起始位置。如果设置为大于字符串中的字符数目,则返回空字符串("")。
length可选的。要返回的字符数目。如果省略或 length 超过文本的字符数(包括 start 处的字符),将返回字符串中从 start 到字符串结束的所有字符。

实例

例子 1
  1. Module Module1
  2. Sub Main()
  3. Dim txt
  4. txt="This is a beautiful day!"
  5. Console.WriteLine(Mid(txt,1,1))
  6. End Sub
  7. End Module

输出:

  1. T
例子 2
  1. Module Module1
  2. Sub Main()
  3. Dim txt
  4. txt="This is a beautiful day!"
  5. Console.WriteLine(Mid(txt,1,11))
  6. End Sub
  7. End Module

输出:

  1. This is a b
例子 3
  1. Module Module1
  2. Sub Main()
  3. Dim txt
  4. txt="This is a beautiful day!"
  5. Console.WriteLine(Mid(txt,1))
  6. End Sub
  7. End Module

输出:

  1. This is a beautiful day!
例子 4
  1. Module Module1
  2. Sub Main()
  3. Dim txt
  4. txt="This is a beautiful day!"
  5. Console.WriteLine(Mid(txt,10))
  6. End Sub
  7. End Module

输出:

  1. beautiful day!

分类导航