Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Convert String to Integer
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Lucky Khoza  
View profile  
 More options Nov 13 2012, 9:32 am
From: Lucky Khoza <mrkh...@gmail.com>
Date: Tue, 13 Nov 2012 16:32:39 +0200
Local: Tues, Nov 13 2012 9:32 am
Subject: [erlang-questions] Convert String to Integer

Hi Erlang Developers,

How do i convert string to integer in Erlang, for example; "123" to 123.

Kindest Regards
Lucky

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Artem Teslenko  
View profile  
 More options Nov 13 2012, 9:34 am
From: Artem Teslenko <a...@ipv6.dp.ua>
Date: Tue, 13 Nov 2012 15:34:00 +0100
Subject: Re: [erlang-questions] Convert String to Integer
Hi,

1> list_to_integer("123").
123

On Tue, 13 Nov 2012, Lucky Khoza wrote:
> Hi Erlang Developers,

> How do i convert string to integer in Erlang, for example; "123" to 123.

> Kindest Regards
> Lucky
> _______________________________________________
> erlang-questions mailing list
> erlang-questi...@erlang.org
> http://erlang.org/mailman/listinfo/erlang-questions

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dmitry Belyaev  
View profile  
 More options Nov 13 2012, 9:36 am
From: Dmitry Belyaev <be.dmi...@gmail.com>
Date: Tue, 13 Nov 2012 18:36:50 +0400
Local: Tues, Nov 13 2012 9:36 am
Subject: Re: [erlang-questions] Convert String to Integer

erlang:list_to_integer/1

--
Dmitry Belyaev

On 13.11.2012, at 18:32, Lucky Khoza wrote:

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Uvarov  
View profile  
 More options Nov 13 2012, 9:38 am
From: Michael Uvarov <free...@gmail.com>
Date: Tue, 13 Nov 2012 17:37:55 +0300
Local: Tues, Nov 13 2012 9:37 am
Subject: Re: [erlang-questions] Convert String to Integer
1. list_to_integer("111").
111

2. There are no strings in Erlang as a special type, "111" is a list.
_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wes James  
View profile  
 More options Nov 13 2012, 10:55 am
From: Wes James <compte...@gmail.com>
Date: Tue, 13 Nov 2012 08:55:14 -0700
Local: Tues, Nov 13 2012 10:55 am
Subject: Re: [erlang-questions] Convert String to Integer

There may not be technically strings, but there is a module with "string"
funs:

http://www.erlang.org/doc/man/string.html

wes

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard O'Keefe  
View profile  
 More options Nov 13 2012, 4:59 pm
From: "Richard O'Keefe" <o...@cs.otago.ac.nz>
Date: Wed, 14 Nov 2012 10:59:12 +1300
Local: Tues, Nov 13 2012 4:59 pm
Subject: Re: [erlang-questions] Convert String to Integer

On 14/11/2012, at 3:32 AM, Lucky Khoza wrote:

> Hi Erlang Developers,

> How do i convert string to integer in Erlang, for example; "123" to 123.

It is a good idea to search for an answer before asking
a question on a mailing list.  In this case, Googling for
        "convert string to integer" Erlang
found
        http://osdir.com/ml/erlang-questions-programming/2003-03/msg00177.html
in seconds.

Doing such a search saves everyone's time, including yours.

_______________________________________________
erlang-questions mailing list
erlang-questi...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »