Closed Thread
Results 1 to 6 of 6

Thread: how to search a source

  1. #1
    kiddies is offline Programmer
    Join Date
    May 2009
    Posts
    129
    Rep Power
    0

    how to search a source

    hey man...i have project to make a tool for scnning...but i dont know how to scanning n checking a source...my algorithm is my perl script can check header of html like this
    Code:
    <h1> bla bla</h1>
    ok,how a simple script to checking it...thanks before

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Posts
    16,486
    Blog Entries
    75
    Rep Power
    143

    Re: how to search a source

    Are you checking for the existence of a header, the contents of it, other?
    Regular Expressions are probably going to be your answer, regardless.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #3
    kiddies is offline Programmer
    Join Date
    May 2009
    Posts
    129
    Rep Power
    0

    Re: how to search a source

    im checking existence of header..just header i wanna check...can u give an example...

  5. #4
    Join Date
    Jul 2006
    Posts
    16,486
    Blog Entries
    75
    Rep Power
    143

    Re: how to search a source

    The regex for an h1 header would be: "\<h1\>(.*?)\<\/h1\>", which will store the contents of the header in $1
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  6. #5
    kiddies is offline Programmer
    Join Date
    May 2009
    Posts
    129
    Rep Power
    0

    Re: how to search a source

    ok thanks master..

  7. #6
    neverbugme is offline Newbie
    Join Date
    Oct 2008
    Posts
    5
    Rep Power
    0

    Re: how to search a source

    I think google will have something to say on this topic.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 4
    Last Post: 09-15-2010, 06:19 AM
  2. Replies: 1
    Last Post: 03-18-2010, 10:15 AM
  3. Source Code: Directory listings && Search!
    By BlaineSch in forum Classes and Code Snippets
    Replies: 5
    Last Post: 04-30-2009, 11:17 PM
  4. Replies: 2
    Last Post: 04-19-2009, 01:59 AM

Tags for this Thread

Bookmarks

Posting Permissions

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