007. xfnString2CollByDelim

xfnString2CollByDelim 함수

구문

반환값

참고

예제

코드

Dim strStrs As xProperties

Dim strs As xProperty

Dim cnt As Integer

Set strStrs = xfnString2CollByDelim("This is Tfaccess!!", " ")

For Each strs In strStrs

    Debug.Print strs.Value

Next

'-------------결과값---------------

This

is

Tfaccess!!