1

iOS用のTBXMLライブラリを使用してHTMLを解析しようとしていますが、このHTMLの「より多くのテキスト」値を取得したいと思います。

<div> 
 <a href="/url/1">
   <strong>value</strong>
 </a>
 more text
</div>

私はこのコードを使用しましたが、機能していないようです:

//Assume that "div" is a TBXMLElement* for this div 
NSString* content = [TBXML textForElement:div];
//Returns @"" when the value @"more text" is expected...

私のコードの何が問題になっていますか?

4

1 に答える 1

1

OK、TBXMLライブラリを変更し、問題を解決しました...誰かが同じ問題を抱えている場合は、次のことを試してください。

1)ファイルTBXML.hに、NSString*afterTextという名前のTBXMLElementの属性を作成します。

2)ファイルTBXML.mでこのコードを検索し、コメントします。

// if parent element has children clear text
                if (parentXMLElement && parentXMLElement->firstChild)
                    parentXMLElement->text = 0;

3)ステップ1のコードの前にこのコードを記述します。

if (parentXMLElement && parentXMLElement->firstChild){

            //if the next string does not content...
            const char * parentNametag =  [[TBXML elementName:parentXMLElement] UTF8String];
            char * finalTag =  (char *)malloc(sizeof("</")+sizeof(parentNametag)+sizeof(">"));
            strcpy(finalTag,"</");
            strcat(finalTag,parentNametag);
            strcat(finalTag,">");

            char * elementTextStart = elementStart;//parentXMLElement->text;
            char * elementTextEnd = elementTextStart;

            elementTextEnd = strstr(elementStart,finalTag);

            if(elementTextEnd != NULL){
                long textLength = strlen(elementTextStart) - strlen(elementTextEnd) ;
                if (textLength > 0){
                    afterTextStart = (char *)malloc(textLength*sizeof(char));
                    memcpy(afterTextStart, elementTextStart,(textLength*sizeof(char)));
                    parentXMLElement->afterText = afterTextStart;
                }
            }

        }

これで、属性「aftertext」に moretext」が含まれるようになりました。

これは正統な解決策ではありませんが、私にとってはうまくいきます。

于 2012-10-22T09:55:28.647 に答える