Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
902 views
in Technique[技术] by (71.8m points)

iphone - Objective-C: Find consonants in string

I have a string that contains words with consonants and vowels. How can I extract only consonants from the string?

NSString *str = @"consonants.";

Result must be:

cnsnnts
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could make a character set with all the vowels (@"aeiouy")

+ (id)characterSetWithCharactersInString:(NSString *)aString

then use the

- (NSString *)stringByTrimmingCharactersInSet:(NSCharacterSet *)set

method.

EDIT: This will only remove vowels at the beginning and end of the string as pointed out in the other post, what you could do instead is use

- (NSArray *)componentsSeparatedByCharactersInSet:(NSCharacterSet *)separator

then stick the components back together. You may also need to include capitalized versions of the vowels in the set, and if you want to also deal with accents (à á è è ê ì etc...) you'll probably have to include that also.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...