Change order of parameter to LTRB for better readability
[LibreOffice.git] / basic / qa / basic_coverage / test_mid_replace_more.vb
blob40b9ac33792a726677b2f307db3ed4f262399181
2 ' This file is part of the LibreOffice project.
4 ' This Source Code Form is subject to the terms of the Mozilla Public
5 ' License, v. 2.0. If a copy of the MPL was not distributed with this
6 ' file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 ' cf. examples at <https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/
10 ' statements/mid-statement>:
11 Function doUnitTest as String
12 s = "The fox jumps"
13 Mid(s, 5, 3, "duck")
14 If (s = "The duc jumps") Then
15 doUnitTest = "OK"
16 Else
17 doUnitTest = "FAIL"
18 End If
19 End Function