• 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. How to get 12 from "12"

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 142
  • Views 840
  • 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

How to get 12 from "12"

GiriBabu
GiriBabu over 13 years ago

Hi all. I need to get  Value of string without quatations. For example 12 from "12" .

  • Cancel
  • GiriBabu
    GiriBabu over 13 years ago

     I solved this problem through the command stringToSymbol(). Now i want to create string for a value in variable. See below code

             number=12(actually this number varies)     

          strcat("fps" number)

    I don't want like strcat("fps" "12") because 12 is varies for every time.
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 13 years ago
    Actually stringToSymbol will not convert it to a number, but to a symbol. You can use atoi() for an integer, atof() for a float, or cdfParseFloatString if it uses suffix notation (e.g. "1.2u")

    To go the other way, use sprintf():

    sprintf(varName "fps%d" number)

    Or if you don't need to assign to a variable but just want to use the return value:

    sprintf(nil "fps%d" number)

    This has come up several times on the forums, I believe.

    Regards,

    Andrew
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • analogmatch
    analogmatch over 13 years ago
    One way to do is as follows: =>evalstring("12") =>12
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • skillUser
    skillUser over 13 years ago

    Yes, but the methods that Andrew pointed out are better.  Here's why: The "evalstring" approach can be used to generally evaluate some SKILL expression in a string format, but what if the string happened to contain the word "exit" rather than a number - evalstring would cause the session to close.  So although this approach could be used, I would recommend using one of the earlier noted methods (i.e. atoi, atof, cdfParseFloatString).

    Regards,

    Lawrence.

    • 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