Help finding and databasing similar patterns

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Help finding and databasing similar patterns

    I have several HTML files saved in HTML form in a field called
    HTMLSTORAGE in a Filemaker database. Each HTML page has several
    http:// links in it. I want to be able to extract every link and
    store it in a separate database.

    How can you do this ?

    -Squeed
    J. Squeed Guest

  2. Similar Questions and Discussions

    1. databasing flash movies
      Okay, I want to take my flash knowledge up a few notches. I currently have a web application written in coldfusion. The end user wants to be able...
    2. fh9 cannot export patterns to swf?
      Hi! try to make a shape fill with pattern, it will not export it with the pattern... why ? & how to overcome that?
    3. Patterns
      Hi ! I've got a simple looking problem, do maybe someone will have simple, short solution for it. I hava a string whis is an expression e.g.:...
    4. Actions and patterns.
      Just a quick question here..... Ive often created actions that use patterns. My actions also create the patterns that are used in them. (2 seperate...
    5. Struts or Patterns in ASP.NET
      As an architectural question - does ASP.NET offer any "pattern" like Struts to facilitate front-ends to Web Servers? As far as I can see, it's up...
  3. #2

    Default Re: Help finding and databasing similar patterns

    Script I envision something like this.

    Count the number of http:// patterncounts in HTMLSTORAGE.
    Set a stop loop field to that number
    Set a counter field to 1
    Loop
    SetField CURRENTLINK to middle ( HTMLSTORAGE, starting with [url]http://,[/url]
    ending with the next space )
    SetFieldLINKSFOUND to LINKSFOUND & ", " & CURRENTLINK
    #[Remove the link you've already captured]
    SetField HTMLSTORAGE substitute ( HTMLSTORAGE, CURRENTLINK , "")
    Exit Loop if COUNTERFIELD > STOPLOOP
    End Loop

    Contact me directly if you need help.

    Jeanne G.
    jeanneatdesksideguru.com
    [url]www.desksideguru.com[/url]

    "J. Squeed" <squeed2000@yahoo.com> wrote in message
    news:8e19e59e.0308271815.4502f776@posting.google.c om...
    > I have several HTML files saved in HTML form in a field called
    > HTMLSTORAGE in a Filemaker database. Each HTML page has several
    > http:// links in it. I want to be able to extract every link and
    > store it in a separate database.
    >
    > How can you do this ?
    >
    > -Squeed

    J. E. Goodman Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139