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

Ask A Question

Stats

  • Questions 97k
  • Answers 97k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I ended up using the BeforeBuild target to explicitly invoke… May 11, 2026 at 7:27 pm
  • Editorial Team
    Editorial Team added an answer The m68k is big endian which means that the leftmost/first… May 11, 2026 at 7:27 pm
  • Editorial Team
    Editorial Team added an answer Found the problem and fixed it. I had this: enum… May 11, 2026 at 7:27 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.