Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
3k views

Strip Non-Alphanumeric Characters from an NSString

I'm looking for a quick and easy way to strip non-alphanumeric characters from an NSString. Probably something using an NSCharacterSet, but I'm tired and nothing seems to return a string containing ...
5
votes
3answers
101 views

Check strings for same characters in Objective-C

I have an array of strings, from which I would like to extract only those with unique character sets. (For example, "asdf" and "fdsa" would be considered redundant). This is the method I am currently ...
4
votes
1answer
2k views

NSCharacterSet: How do I add “_” to alphanumericCharacterSet text restriction?

Building an NSCharacter set to restrict a UITextField for entering user names. I want the user to be able to also enter an underscore (so [A-Za-z0-9_]) but alphanumericCharacterSet does not include ...
3
votes
2answers
1k views

NSString - replacing characters from NSCharacterSet

I gotta little question about string Programming: I have an NSCharacterSet which contains all the characters I want to remove from my NSString. How can I do that? Thank you, Christian
2
votes
4answers
906 views

StringByTrimmingCharactersInSet is not working

I want to remove "#"... So I tried NSString *abc = [@"A#BCD#D" stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"#"] ]; But it is still "A#BCD#D"... What's ...
1
vote
1answer
54 views

How to set a dialog code page in rc-file

I use VS 2010 and write in C++. How can i set a dialog codepage in a resource file (rc-file)? I output a text through DrawText Win API function. I draw text right in a dialog (not in its child ...
1
vote
1answer
186 views

What is differnce between NSString and NSCharacterset?

I studying NSCharacterset class. NSString and NSCharacterset look like similar class. Who can explain difference between NSString and NSCharacterset? When use NSCharacterset? Thanks your help..
1
vote
2answers
255 views

Trimming characters of NSXMLParser

What is the right way to trim characters in foundCharacters of NSXMLParser? I've found many examples that do it like this: - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string { ...
1
vote
1answer
372 views

how to print characterSet in objective c?

i'm using GNUstep shell for programming objective-c. I'm able to convert string to a character set. But unable to print the converted character set in the console. Please tell me a way to print it. ...
0
votes
2answers
51 views

Why whitespaceAndNewlineCharacterSet doesn't remove spaces?

This code SHOULD clean phone number, but it doesn't: NSLog(@"%@", self.textView.text); // Output +358 40 111 1111 NSString *s = [self.textView.text stringByTrimmingCharactersInSet:[NSCharacterSet ...
0
votes
2answers
110 views

Is there any possibility to use more than one NSCharacterSet Object for the same NSString?

Consider this code: NSString *aString = @"\tThis is a sample string"; NSString *trimmedString = [aString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; NSLog(@"The trimmed ...
0
votes
1answer
50 views

How to Print the characterset of a Font?

I have downloaded a font from the internet. Now I want to Print the Characterset of that font. I got the CFCharacterSetRef of that font. But I don't know how to print that CFCharacterSetRef. This is ...
0
votes
2answers
145 views

'NSCharacterSet' may not respond to '-count'

I got a warning message in NSCharacterSet *myCharSet3 = [NSCharacterSet characterSetWithCharactersInString:query3]; int chr_count3; chr_count3=[myCharSet3 count]; How to fix that warning ?
0
votes
1answer
221 views

How to use NSLineSeparatorCharacter and NSParagraphSeparatorCharacter?

I wonder how I can use the constants NSLineSeparatorCharacter and NSParagraphSeparatorCharacter as a parameter to a function instead of hard coding \n. - (id)initWithSeparator:(id)separator { ...