0

componentsSeparatedByString を使用して、「-」で区切られた入力を分割しようとしています

NSString *idInput = @"1-S2-1-8214685" //Actually input of a memory-rading operation

NSMutableArray *idBuf = [NSMutableArray arrayWithArray:[idInput componentsSeparatedByString:@"-"]];

ただし、これは最初の部分文字列と 3 番目の部分文字列を省略しているように見えます。

idBuf = {@"",@"S2",@"",@"8214685"}

欠落している 2 つの部分文字列を取得するにはどうすればよいですか?

全機能:

+ (id) buildPlayerwithIdBuffer: (char*)idBuffer andPlayerName: (char*)playerName
{

NSString *idInput = [NSString stringWithUTF8String:idBuffer];
NSString *playerN = [NSString stringWithUTF8String:playerName];
NSString *uniqueServerId;

SFPlayer *resPlayer = [[self alloc]initWithPlayerName:playerN];

    NSMutableArray *idBuf = [NSMutableArray arrayWithArray:[idInput componentsSeparatedByString:@"-"]];
    //[idBuf removeObjectAtIndex:1];

    switch ([[idBuf objectAtIndex:0]characterAtIndex:0]) {
        case '1':
            [idBuf replaceObjectAtIndex:0 withObject:@"us"];
            break;
        case '2':
            [idBuf replaceObjectAtIndex:0 withObject:@"eu"];
            break;
        case '3':
            [idBuf replaceObjectAtIndex:0 withObject:@"kr"];
            break;
        case '6':
            [idBuf replaceObjectAtIndex:0 withObject:@"sg"];
            break;
        default:
            break;
    }

    uniqueServerId = [[idBuf objectAtIndex:2] stringByAppendingString:[idBuf lastObject]];

    [resPlayer setServer:[idBuf objectAtIndex:0]];
    [resPlayer setIdentifier:uniqueServerId];



return resPlayer;


}

編集: もう一度確認したところ、idBuf[0] と idBuf[3] には同じ値が含まれており、C 文字列として表示されます。

"@\xfffffffa\xfffffffb}\xffffffff\x7f"
4

0 に答える 0