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
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 ); }
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.
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
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 );
}
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