サーチ…
備考
特定の文字を特定の回数繰り返す文字列変数を割り当てる必要があることがあります。 VBAは、この目的のために2つの主な機能を提供します。
-
String
/String$
-
Space
/Space$
。
文字列関数を使用して、n個の繰り返し文字列を割り当てます
Dim lineOfHyphens As String
'Assign a string with 80 repeated hyphens
lineOfHyphens = String$(80, "-")
文字列とスペース関数を使用して、n文字の文字列を割り当てます
Dim stringOfSpaces As String
'Assign a string with 255 repeated spaces using Space$
stringOfSpaces = Space$(255)
'Assign a string with 255 repeated spaces using String$
stringOfSpaces = String$(255, " ")
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow