Results 1 to 4 of 4

Thread: String to integer

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #3
    Brigadier General
    Join Date
    Oct 2012
    Posts
    994
    Thanks
    20
    Thanked 588 Times in 388 Posts
    Quote Originally Posted by Jeplaa View Post
    Hey,
    Is it possible to convert string to integer in CoD2 using stock functions ?

    Here is example using Java, hope it is similar in CoD2.

    PHP Code:
    String string "1234";
    int num Integer.parseInt(string); 
    Thanks in advance,
    Jeplaa
    yeah, there has been a stock function since the very first COD:

    PHP Code:
    int( string ); 
    FYI - the function in COD1 and UO took this form:

    PHP Code:
    (int)( string); 
    Last edited by Tally; 24th February 2014 at 11:44.

  2. The Following User Says Thank You to Tally For This Useful Post:

    Jeplaa (24th February 2014)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •