How to remove parentheses from string got from array of array in objective c?

jatoi 110
// Form the query.
        NSString *query = [NSString stringWithFormat:@"select firstTimeStamp from activityTimeStamp where userId=\"%@\" And buddyId=\"%@\"",[PFUser currentUser].username,buddyId];    
        // Get the results.
        if (self.arrTimeStampInfo != nil) {
            self.arrTimeStampInfo = nil;
        }
        // Getting Data into Array
        self.arrTimeStampInfo = [[NSArray alloc] initWithArray:[self.dbManager loadDataFromDB:query]];

       // Get the results.
    if (self.arrTimeStampInfo != nil) {
        self.arrTimeStampInfo = nil;
    }

    NSLog(@"Array containing records%@", self.arrTimeStampInfo);
and it prints (    (1111132324)   ) 
    NSString *string = [_arrTimeStampInfo objectAtIndex: 0];

when i print the string it comes like (1111132324) and i want to remove those brackets want only number in the string? Any clue will be highly appreciated.

jatoi 110
  // Getting Data into Array
    self.arrTimeStampInfo = [[NSArray alloc] initWithArray:[self.dbManager loadDataFromDB:query]];
    NSArray* firstItem = [self.arrTimeStampInfo objectAtIndex:0]; 
    NSString* string1 = [firstItem objectAtIndex:0];
    NSLog(@"Array containing records%@", string1);
    NSInteger a=[string1 intValue];
  NSLog(@"time stamp finally we got = %ld",a);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to fil an array from id in objective C?

From Dev

Remove null objects from mutable array in objective c

From Dev

How to remove an index from a String Array?

From Dev

How to remove an empty string from array

From Dev

How to remove an element from a String array?

From Dev

How to remove a string from an array - Jquery

From Dev

Lodash remove from string array

From Dev

How to convert the response got from a server from string to array in swift 3?

From Dev

In C, how to print a string from a multidimensional array?

From Dev

Remove string characters from a string if not matched in an array

From Dev

Remove string characters from a string if not matched in an array

From Dev

finding the maximum date from an array in objective c

From Dev

Create array of floats from csv Objective C

From Dev

objective-c , Finding objects from array

From Dev

How to remove range from an array

From Dev

How to remove an array from a collection?

From Dev

How to remove an array from a collection?

From Dev

How to remove item from an array

From Dev

How to remove this "0": {from an array

From Dev

How to remove "..." from my array?

From Dev

How to add and remove from array?

From Dev

How to remove item from string index array in Typescript

From Dev

How do I remove a string from an array in a mongodb document?

From Dev

How to properly remove a character from a char array (with or without converting to a string)?

From Dev

How to remove quotes from string so that it can be used for an associative array

From Dev

How to properly remove a character from a char array (with or without converting to a string)?

From Dev

How to Remove Half Received JSON String from an Array node js

From Dev

How to remove string from an array that are less than a certain length?

From Dev

How to remove outer array from a nested array?

Related Related

  1. 1

    How to fil an array from id in objective C?

  2. 2

    Remove null objects from mutable array in objective c

  3. 3

    How to remove an index from a String Array?

  4. 4

    How to remove an empty string from array

  5. 5

    How to remove an element from a String array?

  6. 6

    How to remove a string from an array - Jquery

  7. 7

    Lodash remove from string array

  8. 8

    How to convert the response got from a server from string to array in swift 3?

  9. 9

    In C, how to print a string from a multidimensional array?

  10. 10

    Remove string characters from a string if not matched in an array

  11. 11

    Remove string characters from a string if not matched in an array

  12. 12

    finding the maximum date from an array in objective c

  13. 13

    Create array of floats from csv Objective C

  14. 14

    objective-c , Finding objects from array

  15. 15

    How to remove range from an array

  16. 16

    How to remove an array from a collection?

  17. 17

    How to remove an array from a collection?

  18. 18

    How to remove item from an array

  19. 19

    How to remove this "0": {from an array

  20. 20

    How to remove "..." from my array?

  21. 21

    How to add and remove from array?

  22. 22

    How to remove item from string index array in Typescript

  23. 23

    How do I remove a string from an array in a mongodb document?

  24. 24

    How to properly remove a character from a char array (with or without converting to a string)?

  25. 25

    How to remove quotes from string so that it can be used for an associative array

  26. 26

    How to properly remove a character from a char array (with or without converting to a string)?

  27. 27

    How to Remove Half Received JSON String from an Array node js

  28. 28

    How to remove string from an array that are less than a certain length?

  29. 29

    How to remove outer array from a nested array?

HotTag

Archive