2010-09-22 18 views
0

i ont une chaînecomment supprimer un signe particulier d'une chaîne?

gpbusd~buy~~~~update~HIT 40 PIPS~HIT 110 PIPS~~gpbusd~buy~~~BREAK EVEN~update~HIT~100+~~gpbusd~buy~1.5500/25~1.5455~~new~40~100+~~gpbusd~buy~~~~update~CLOSE 0 TO 10 PIPS N~~~gpbusd~buy~1.5335/50~1.5320~~new~40~80+~~gpbusd~buy~~~~update~~15-20 PIPS CLOSE~KEEP OPEN~gpbusd~buy~1.5530/50~~1.5505~update~HIT~80~KEEP OPEN~gpbusd~buy~1.5530/50~1.5465~~new~40~80~100+~gbpjpy~sell~131.05/.130.75~132.15~~new~60~100~keep open~eurusd~sell~1.2840/20~1.2870~STOP~update~~~~

je veux supprimer le signe délimiteur et tous les mots séparés entre eux? Comment puis-je le faire?

Répondre

3
  • Fractionnement une chaîne:

    NSArray *parts = [string componentsSeparatedByString: @"~"]; 
    
  • Assemblage d'une chaîne à partir d'un tableau:

    NSString *string = [parts componentsJoinedByString: @" "]; 
    
  • Aseptisation une chaîne, en remplaçant toutes les occurrences de ~ avec des espaces:

    NSString *string = [string stringByReplacingOccurrencesOfString: @"~"\ 
              withString:@" " ] 
    
+0

comment puis-je faire un tableau des mots de la chaîne? –