Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I actually developed some code to extract this. I'm not sure if it's the "easiest" way, but you don't need any external modules to make it work!

Yeah, I put the test string in a text so I didn't have to worry about escaping anything in a string literal.

use strict; use warnings; my $string; my $startOfIframe; my $endOfIframe; open TEST, "<test_string.txt" or die "Cannot open:$!"; $string = readline TEST; close TEST; $startOfIframe = index $string, '<iframe' ; $endOfIframe = index $string, '</iframe>'; while ( $startOfIframe != -1 ) { print substr ( $string, $startOfIframe, $endOfIframe - $startOfIfr +ame ) . '</iframe>'. "\n"; $startOfIframe = index $string, '<iframe', $endOfIframe; $endOfIframe = index $string, '</iframe>', $startOfIframe; }

I'm looping through the input string, extracting the iframe data with a substr call. The offset and length of the substr call are derived from the indexes of the beginning and ending iframe tags, which are updated at each iteration of the loop.

The indexes of the opening and closing iframe tags themselves are found by starting the search at the index of the tag immediately proceeding it. The loop continues until an opening iframe tag can't be found.

Derp, I meant </iframe> and not </index> in my print.


In reply to Re: how to extract iframes from text by B-Man
in thread how to extract iframes from text by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-04-24 04:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found