うわー、自分で質問しようと思っていたのですが、すでに質問されていました。Excelのクリップボード出力はすべてデフォルトでタブ区切りになっています。これは、あなたが固定幅のフォントを持っているが、必ずしもタブ区切りをサポートしていない場合、"本当の “プレーンテキスト出力のためにちょっとイライラします。
とにかく、現在選択されている領域を単純な固定幅列のASCIIテーブルとしてコピーする小さなExcelマクロを見つけて修正しました。
187712 201 37 0.18 2525 580 149 0.25 136829 137 43 0.31
以下がマクロのコードです。これを使用するには、Excel 2007 以降を使用している場合は、Excel オプションの「開発者」タブを有効にしてください。
Sub CopySelectionToClipboardAsText()
' requires a reference to "Windows Forms 2.0 Object Library"
' add it via Tools / References; if it does not appear in the list
' manually add it as the path C:\Windows\System32\FM20.dll
Dim r As Long, c As Long
Dim selectedrows As Integer, selectedcols As Integer
Dim arr
arr = ActiveSheet.UsedRange
selectedrows = UBound(arr, 1)
selectedcols = UBound(arr, 2)
Dim temp As Integer
Dim cellsize As Integer
cellsize = 0
For c = 1 To selectedcols
temp = Len(CStr(Cells(1, c)))
If temp > cellsize Then
cellsize = temp
End If
Next c
cellsize = cellsize + 1
Dim line As String
Dim output As String
For r = 1 To selectedrows
line = Space(selectedcols * cellsize)
For c = 1 To selectedcols
Mid(line, c * cellsize - cellsize + 1, cellsize) = Cells(r, c)
Next c
output = output + line + Chr(13) + Chr(10)
Next r
Dim MyData As MSForms.DataObject
Set MyData = New DataObject
MyData.SetText output
MyData.PutInClipboard
MsgBox "The current selection was formatted and copied to the clipboard"
End Sub
``` 0x1&