• 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 & replace in a sting

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 145
  • Views 9690
  • 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 & replace in a sting

The Consultant
The Consultant over 15 years ago

string="1!2! 3 4"

should become

string="1234"

 so remove all " " and "!"

 

how can i do this

 

regex ?

 

 

 

 

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 15 years ago

    Since you're using IC613 (from your previous post), you could use the newer "pcre" (Perl Compatible Regular Expression) functions which are more powerful than the older "rex" functions. For example:

    pat=pcreCompile("[!\\s]")
    string=pcreReplace(pat string "" 0)

    The \\s (extra escape needed because the pattern really needs a backslash, but backslash is used in SKILL, so needs to be escaped) means whitespace. So it will match space, tab, etc.

    You could also use the older functions:

    rexCompile("[! ]")
    string=rexReplace(string "" 0)

    The PCRE-based functions are really powerful, and so I'd recommend those in general if you don't need to make code also work in IC5141 (which only had the older rex functions)

    Regards,

    Andrew.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Yunqi
    Yunqi over 3 years ago in reply to Andrew Beckett

    Hello Andrew,

    How to remember the pattern, and recall it back in the replacement?

    e.g. from "inst1.inst2/inst3/net4<5>#6"

    to "inst1.inst2\\/inst3\\/net4\\<5\\>\\#6"

    Can I use in this way:

    pat=pcreCompile("([/<>#])")
    string=pcreReplace(pat string "\\\\$_" 0)    ; How about similar $1 or $_?

    Thanks,

    Yunqi

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 3 years ago in reply to Yunqi

    I split off your earlier question from this thread (you'll see why when you read the forum guidelines which I linked to in your reply). See the split thread here. Please stop re-askng the question in this 12-year old post.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 3 years ago in reply to Yunqi

    I split off your earlier question from this thread (you'll see why when you read the forum guidelines which I linked to in your reply). See the split thread here. Please stop re-askng the question in this 12-year old post.

    • 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