Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
hexsub という文字列配列があり、配列の各「インスタンス」は 2 文字を保持します。finalhex という新しい配列を作成しました。新しい配列の各「インスタンス」が前の配列の 2 つを保持するようにしたかったので、hexsub(0)=06、hexsub(1)=AF、次に finalhex(0)=06AF としました。これどうやってするの?
'配列要素の数が偶数であると仮定
Dim NumberOfCombinedElements as Integer = hexsub.count / 2 Dim FinalHex(NumberOfCombinedElements ) as string for I as integer = 0 to NumberOfCombinedElements - 1 finalhex(I) = hexsub(I*2) & hexsub(I*2 + 1) next