Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 53811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:07:19+00:00 2026-05-10T17:07:19+00:00

I’m writing a Perl script and I’ve come to a point where I need

  • 0

I’m writing a Perl script and I’ve come to a point where I need to parse a Java source file line by line checking for references to a fully qualified Java class name. I know the class I’m looking for up front; also the fully qualified name of the source file that is being searched (based on its path).

For example find all valid references to foo.bar.Baz inside the com/bob/is/YourUncle.java file.

At this moment the cases I can think of that it needs to account for are:

  1. The file being parsed is in the same package as the search class.

    find foo.bar.Baz references in foo/bar/Boing.java

  2. It should ignore comments.

    // this is a comment saying this method returns a foo.bar.Baz or Baz instance  // it shouldn't count  /*   a multiline comment as well  this shouldn't count  if I put foo.bar.Baz or Baz in here either */ 
  3. In-line fully qualified references.

    foo.bar.Baz fb = new foo.bar.Baz(); 
  4. References based off an import statement.

    import foo.bar.Baz; ... Baz b = new Baz(); 

What would be the most efficient way to do this in Perl 5.8? Some fancy regex perhaps?

open F, $File::Find::name or die; # these three things are already known # $classToFind    looking for references of this class # $pkgToFind      the package of the class you're finding references of # $currentPkg     package name of the file being parsed while(<F>){   # ... do work here    } close F; # the results are availble here in some form 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:07:19+00:00Added an answer on May 10, 2026 at 5:07 pm

    You also need to skip quoted strings (you can’t even skip comments correctly if you don’t also deal with quoted strings).

    I’d probably write a fairly simple, efficient, and incomplete tokenizer very similar to the one I wrote in node 566467.

    Based on that code I’d probably just dig through the non-comment/non-string chunks looking for \bimport\b and \b\Q$toFind\E\b matches. Perhaps similar to:

    if( m[         \G         (?:             [^''/]+           | /(?![/*])         )+     ]xgc ) {     my $code = substr( $_, $-[0], $+[0] - $-[0] );     my $imported = 0;     while( $code =~ /\b(import\s+)?\Q$package\E\b/g ) {         if( $1 ) {             ... # Found importing of package             while( $code =~ /\b\Q$class\E\b/g ) {                 ... # Found mention of imported class             }             last;         }         ... # Found a package reference     } } elsif( m[ \G ' (?: [^'\\]+ | \\. )* ' ]xgc     ||   m[ \G ' (?: [^'\\]+ | \\. )* ' ]xgc ) {     # skip quoted strings } elsif(  m[\G//.*]g­c  ) {     # skip C++ comments 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my XML file chapters tag has more chapter tag.i need to display chapters
i want to parse a xhtml file and display in UITableView. what is the
I have thousands of HTML files to process using Groovy/Java and I need to
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.