回答編集履歴

4

一部削除

2020/06/03 15:32

投稿

tosi
tosi

スコア553

test CHANGED
@@ -74,8 +74,6 @@
74
74
 
75
75
  Option Explicit
76
76
 
77
-
78
-
79
77
  Sub Test_Sample_Miniature()
80
78
 
81
79
 
@@ -88,10 +86,6 @@
88
86
 
89
87
  Dim obj As IHTMLElement
90
88
 
91
- Dim obj2 As IHTMLElement
92
-
93
- Dim obj3 As IHTMLElement
94
-
95
89
  Dim j As Integer '行
96
90
 
97
91
  Dim i As Integer '列

3

カンマ抜く

2020/06/03 15:32

投稿

tosi
tosi

スコア553

test CHANGED
@@ -210,16 +210,14 @@
210
210
 
211
211
  j = j + 1: i = 4
212
212
 
213
+ MyStr = Mid(matA, InStr(matA, ">") + 1, Len(matA) - Len("</a>") - InStr(matA, ">"))
214
+
215
+ Worksheets("Sheet1").Cells(j, i).Value = "( " & j & " - " & i & " )" & MyStr
216
+
217
+ Worksheets("Sheet1").Cells(j, i).WrapText = False
218
+
213
219
  '
214
220
 
215
- MyStr = Mid(matA, InStr(matA, ">") + 1, Len(matA) - Len("</a>") - InStr(matA, ">"))
216
-
217
- Worksheets("Sheet1").Cells(j, i).Value = "( " & j & " - " & i & " )" & MyStr
218
-
219
- Worksheets("Sheet1").Cells(j, i).WrapText = False
220
-
221
- '
222
-
223
221
  Next
224
222
 
225
223
  '

2

カンマ挿入

2020/06/03 15:12

投稿

tosi
tosi

スコア553

test CHANGED
@@ -222,6 +222,8 @@
222
222
 
223
223
  Next
224
224
 
225
+ '
226
+
225
227
  Next
226
228
 
227
229
  '

1

訂正

2020/06/03 14:59

投稿

tosi
tosi

スコア553

test CHANGED
@@ -1,6 +1,6 @@
1
1
  解決されていますが、参考情報としてアップします。
2
2
 
3
- (文字列は正規表現を利用して編集)
3
+ (文字列は正規表現編集)
4
4
 
5
5
 
6
6