Excel VBA 関数の作成についてサポートが必要です。
文字列変数 " mystring " は、3 つの異なる形式を持つことができます。
1 つ目は、通常のテキスト文字列です。この場合は何も必要ありません。他の 2 つのバージョンは、後のhtml 出力のタグとhref リンクを処理するために必要です。
エクセルの例:
mystring = "This is a headline"
mystring = "<myLink href='some/link.html'</myLink> This is also a headline"
mystring = "<noLink href='#'</noLink> This is another headline"
そのため、文字列に myLink タグまたは noLink タグが含まれているかどうかを識別し、対応する hrefをxml href-attributeに割り当てる必要があります。noLink の場合は、 を記述して<nolink>-tag
、関数に を追加させる方が使いやすいとhref='#'
思います。
これらの区切り文字を設定するためのより良い方法があれば、提案をお待ちしています。
また、実際の見出しテキストは xml-tag の一部であり、後でmystringName xml-attribute に使用されます。
上記の例では、これらは結果の xml タグである必要があります。
<mytag mystringName="This is a headline"/>
<mytag mystringName="This is also a headline" href="some/link.html" />
<mytag mystringName="This is another headline" href="#" />
XSLの助けを借りて、さまざまな href 属性を処理できます。
これがVBA内でどのように使用できると思いますか:
If mystring = "myLink" Then
xmf.writeline "<mytag mystringName=""" & mystring & """href= """ & href & """ > """
End If
私はオンラインで見つけたこの関数につまずきました:区切り文字を少し違った方法で書く必要があります。
"<myLink href=some/link.html>"This is also a headline
おそらく、これはピースを分割して配列に入れるための良い出発点です。
Public Function GetStringFromQuotation(ByRef sText, sDelimiter As String)
'Store the position of the 1st and 2nd delimiter in the String
Dim iPositionOfFirstDelimiter As Integer, iPositionOfSecondDelimiter As Integer
'Store the length of the delimiter
Dim iLenDelimiter As Integer
'Deliver nothing if the function doesn't get a single usable parameter
'otherwise you'd get an error later on
If Len(sText) = 0 And Len(sDelimiter) = 0 Then
GetStringFromQuotation = ""
Exit Function
End If
iLenDelimiter = Len(sDelimiter)
'Find 1st occurence of delimiter
iPositionOfFirstDelimiter = InStr(sText, sDelimiter)
'Find the 2nd one, starting right behind the first one
iPositionOfSecondDelimiter = InStr(iPositionOfFirstDelimiter + iLenDelimiter, _
sText, sDelimiter)
'If there are 2 occurences
If iPositionOfFirstDelimiter > 0 And iPositionOfSecondDelimiter > 0 Then
'Take the part of the string that's right between them
GetStringFromQuotation = Mid(sText, iPositionOfFirstDelimiter + iLenDelimiter, _
iPositionOfSecondDelimiter - iPositionOfFirstDelimiter - iLenDelimiter)
Else
GetStringFromQuotation = ""
End If
End Function
この機能(または他の機能)を機能させるのを手伝ってくれることを願っています。
どうもありがとう。