Mid Function, Mid Statement

Returns the specified portion of a string expression (Mid function), or replaces the portion of a string expression with another string (Mid statement).

Syntax:


Mid (Text As String, Start As Integer [, Length As Integer]) ཡང་ན་་ Mid (Text As String, Start As Integer , Length As Integer, Text As String)

Return value:

ཡིག་རྟགས་ཕྲེང་བ་ ( རྟེན་གྲངས་ཁོ་ན་སྤྱོད་)

Parameters:

Text བཟོ་བཟོས་དགོས་རྒྱུའི་ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་གང་རུང་།

Start: Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648.

Length: Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648.

གལ་སྲིད་ Mid རྟེན་གྲངས་ནང་གི་ Length ཁུགས་གྲངས་གཏན་འཁེལ་མེད་ན་ ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་ནང་གི་འགོ་ཚུགས་ནས་ཡིག་རྟགས་ཕྲེང་བའི་མཇུག་བསྡུ་པའི་ཡིག་རྟགས་སུ་ཕྱིར་ལོག་པ།

གལ་སྲིད་ Mid བརྗོད་པའི་ནང་གི་ Length ཁུགས་གྲངས་དེ་ཚབ་བརྗེའི་ཡི་གེའི་རིང་ཚད་ལས་ཆུང་བ་ཡོད་ན་ཡི་གེའི་རིང་ཚད་དེ་གཏན་འཁེལ་གྱི་རིང་ཚད་དུ་ཐུང་དུ་གཏོང་དགོས།

Text ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་གྱི་ཡིག་རྟགས་ཕྲེང་བའི་ཚབ་བརྗེ་སྤྱོད་བརྒྱུད།(Mid བརྗོད་པ།)

Error codes:

5 ནུས་མེད་ཀྱི་བརྒྱུད་རིམ་འཁོར་སྤྱོད་

Example:


Sub ExampleUSDate
Dim sInput As String
Dim sUS_date As String
    sInput = InputBox("Please input a date in the international format 'YYYY-MM-DD'")
    sUS_date = Mid(sInput, 6, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Right(sInput, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Left(sInput, 4)
    MsgBox sUS_date
End Sub

Please support us!