Menu

link error !

2009-03-29
2013-04-24
  • Jagat Nibas Mahapatra

    Hi All,
    I tried using this framework in iphone sdk. Should it work ?

    I get link errors like _uregex_reset not found ...

    Please help me how can I fix this error

    regards
    Jagat

     
    • Jagat Nibas Mahapatra

      i have a piece of code in C# which i need to work in obj c. Any idea plaese

      Regex regex = new Regex( "type=\"hidden\" name=\"(.*?)\" value=\"(.*?)\"", RegexOptions.IgnoreCase ); 
                      Match match = regex.Match( firstRes ); 
                      while ( match.Success ) 
                      { 
                          if ( match.Groups[ 0 ].Value.Length > 0 ) 
                          { 
                              postToLogin.Add( match.Groups[ 1 ].Value, match.Groups[ 2 ].Value ); 
                          } 
                          match = regex.Match( firstRes, match.Index + match.Length ); 
                      } 

       
    • John Engelhart

      John Engelhart - 2009-03-30

      If you're seeing lots of undefined symbols, all of them '_uregex_*', then you forgot to add the ICU library to the libraries you link to.

      The steps required are covered in the documentation: http://regexkit.sourceforge.net/RegexKitLite/index.html#AddingRegexKitLitetoyourProject

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.