• 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. read next line if first charcter is semicolon

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 144
  • Views 15559
  • 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

read next line if first charcter is semicolon

Rojalin
Rojalin over 13 years ago

 

Hi,

I have a file.After importing i want to read this.I want if the first character in a line of the file is semicolon then it should read the next line.

Is there any procedure to do that.

 

Thanks 

 

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 13 years ago

    What does the file look like? You might be able to use lineread() which uses the SKILL parser to read the file - and if it contains blank lines or SKILL-like comments, it will return t rather than the contents of the line...

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Rojalin
    Rojalin over 13 years ago
    thanks But my concern is if first character of the file is semicolon then i dont want to read it. It should skip to the next line to read first character of that new line. File is .sexp file Thanks
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 13 years ago

    I've no idea what ".sexp" file is, but if you had a file that looked like this (say):

    ; some comments
    a b c
    ; some more comments
    ; and some more
    /* and even
    some
    C-like comments */
    1 2 3 ; ignore this bit at the end of the line

    you could do:

    port=infile("myfile")
    when(port
      while(data=lineread(port)
        unless(data==t
          printf("elements on the line were: %L\n" data)
        )
      )
    )
    close(port)

    It will then output:

    elements on the line were: (a b c)
    elements on the line were: (1 2 3)

    You should read the documentatin on lineread. This won't work if it's not in SKILL-like syntax. If you want to general line-by-line reading and returning a string, you could do:

    port=infile("myfile")
    when(port
      while(gets(line port)
        unless(substring(line 1 1)==";"
           printf("The line that was read was: %s" line)
        )
      )
      close(port)
    )

    Then this outputs:

    The line that was read was: a b c
    The line that was read was: /* and even
    The line that was read was: some
    The line that was read was: C-like comments */
    The line that was read was: 1 2 3 ; ignore this bit at the end of the line

    Note that gets() will include the carriage return in the string that was read.

    So your mileage may vary - you can do whatever you want, but you'll just need to code it appropriately. You could also use the rex.* functions or pcre.* functions (in IC61X for pcre) to use pattern matching if that's easier.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • vuong
    vuong over 11 years ago
    Thanks
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

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