• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Search for a string pattern inside a file

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 143
  • Views 15759
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Search for a string pattern inside a file

Sandeep4386
Sandeep4386 over 10 years ago

Hi,

I would like to open a file in Skill and search for a string pattern inside a file:

Pattern:"Writing initial simulation snapshot"

Is there any good example on file parsing which would help me to execute this task?

Also I know this pattern will be one of the last five lines of the file I am going to read. How do I use pattern matching to only search last few lines of the files?

Any help would be highly appreciated!

Regards,

Sandeep

  • Cancel
Parents
  • skillUser
    skillUser over 10 years ago

    Hi Sandeep,

    Unless the file is really really big, it is probably easiest to read it forwards (as far as I can tell, the commands for positioning the file pointer only accept byte positions, not 'line numbers' or anything relative to lines). Here's something I tried out quickly with a sample file

    
    fptr = infile("/tmp/testFile")
    => port:"/tmp/testFile"
    pat = pcreCompile("Writing initial simulation snapshot")
    while(gets(line fptr)
      when(pcreExecute(pat line)
        printf("Found at position %L\n" fileTell(fptr))
      )
    )
    
    Found at position 156
    => t
    

    The "pcre" functions are more powerful and flexible than the older "rex" prefix functions, and these should be available as long as you are using IC615, IC616 or ICADV121. 

    Hopefully this helps you?

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • skillUser
    skillUser over 10 years ago

    Hi Sandeep,

    Unless the file is really really big, it is probably easiest to read it forwards (as far as I can tell, the commands for positioning the file pointer only accept byte positions, not 'line numbers' or anything relative to lines). Here's something I tried out quickly with a sample file

    
    fptr = infile("/tmp/testFile")
    => port:"/tmp/testFile"
    pat = pcreCompile("Writing initial simulation snapshot")
    while(gets(line fptr)
      when(pcreExecute(pat line)
        printf("Found at position %L\n" fileTell(fptr))
      )
    )
    
    Found at position 156
    => t
    

    The "pcre" functions are more powerful and flexible than the older "rex" prefix functions, and these should be available as long as you are using IC615, IC616 or ICADV121. 

    Hopefully this helps you?

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information