2018-11-13 13:05:01 +01:00
|
|
|
'
|
|
|
|
' This file is part of the LibreOffice project.
|
|
|
|
'
|
|
|
|
' This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
' License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
' file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
'
|
|
|
|
|
2018-11-13 17:33:16 +01:00
|
|
|
' cf. examples at <https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/
|
|
|
|
' statements/mid-statement>:
|
2021-07-01 18:23:08 +02:00
|
|
|
Function doUnitTest as String
|
2018-11-13 13:05:01 +01:00
|
|
|
s = "The fox jumps"
|
|
|
|
Mid(s, 5, 3, "duck")
|
|
|
|
If (s = "The duc jumps") Then
|
2021-07-01 18:23:08 +02:00
|
|
|
doUnitTest = "OK"
|
2018-11-13 13:05:01 +01:00
|
|
|
Else
|
2021-07-01 18:23:08 +02:00
|
|
|
doUnitTest = "FAIL"
|
2018-11-13 13:05:01 +01:00
|
|
|
End If
|
|
|
|
End Function
|