Need some help with html/strings.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Ruth
    Indigo Rose Customer
    • Mar 2012
    • 83

    Need some help with html/strings.

    I am working on a project that downloads some HTML file via HTTP.Download.
    First I format the HTML file by deleting tags,white spaces etc...
    Second I use TextFile.WriteFromString to save the file.
    Third I display the HTML file into a paragraph object.


    What I want to do is, use String.Find to locate a string in the file,
    and all of the text before the found string will be removed. (loop maybe?)


    Hopefully someone can help!
    Plugins:

    Bitmap (113 KB)

    ComboBoxEx (141 KB)
  • Cybergraph
    Indigo Rose Customer
    • Feb 2007
    • 1633

    #2
    Maybe reading the user manual in the part regarding String functions and manipulation will help you to find the (easy) way to do this.
    We are slowly invading your planet to teach lazy humans to read the user manual.
    But don't be scared: we are here to help.

    Comment

    • Ruth
      Indigo Rose Customer
      • Mar 2012
      • 83

      #3
      Thank you Cybergraph!
      I read about strings a lot in the help file today!
      I just needed to minus the end point with the start point. (problem fixed)
      result = String.Mid(text, start, end-start);
      Plugins:

      Bitmap (113 KB)

      ComboBoxEx (141 KB)

      Comment

      Working...
      X