[wtr-general] Re: Need to pick number from the text

2009-01-28 Thread praveen k
You can take a look at ruby's string class for a solution to your problem.
Here's the URL:
http://www.ruby-doc.org/core/classes/String.html


On Wed, Jan 28, 2009 at 8:56 PM, vasu br.vas...@gmail.com wrote:


 Hi,

 Iam new to watir can anyone help me in this regard:

 Your are registered as a Member, we will SMS you soon. Ref ID: 12345

 I want to Pick that 12345 from the the above output.

 Please helpme
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Need to pick number from the text

2009-01-28 Thread sHiVa

Hi Vasu, use this code;

#*

text=Ref ID: 12345
num=text.split(:)
intnum=num[1].to_i
print intnum

#*

I hope this will help u . :)

On Jan 29, 9:56 am, vasu br.vas...@gmail.com wrote:
 Hi,

 Iam new to watir can anyone help me in this regard:

 Your are registered as a Member, we will SMS you soon. Ref ID: 12345

 I want to Pick that 12345 from the the above output.

 Please helpme
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Need to pick number from the text

2009-01-28 Thread vasu

Ref ID will be changing randomly please let me know i can't hard code
that part

On Jan 29, 10:32 am, sHiVa krapa.ph...@gmail.com wrote:
 Hi Vasu, use this code;

 #*

 text=Ref ID: 12345
 num=text.split(:)
 intnum=num[1].to_i
 print intnum

 #*

 I hope this will help u . :)

 On Jan 29, 9:56 am, vasu br.vas...@gmail.com wrote:

  Hi,

  Iam new to watir can anyone help me in this regard:

  Your are registered as a Member, we will SMS you soon. Ref ID: 12345

  I want to Pick that 12345 from the the above output.

  Please helpme
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Need to pick number from the text

2009-01-28 Thread rob

What about trying to use regex?

Use some regex to find 'Ref ID: ', then grab only the digits that
follow.  I'll try to give you a code example but don't have the time
at the moment.  Hope this helps get you started at least.

On Jan 28, 9:42 pm, vasu br.vas...@gmail.com wrote:
 Ref ID will be changing randomly please let me know i can't hard code
 that part

 On Jan 29, 10:32 am, sHiVa krapa.ph...@gmail.com wrote:



  Hi Vasu, use this code;

  #*

  text=Ref ID: 12345
  num=text.split(:)
  intnum=num[1].to_i
  print intnum

  #*

  I hope this will help u . :)

  On Jan 29, 9:56 am, vasu br.vas...@gmail.com wrote:

   Hi,

   Iam new to watir can anyone help me in this regard:

   Your are registered as a Member, we will SMS you soon. Ref ID: 12345

   I want to Pick that 12345 from the the above output.

   Please helpme- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Watir General group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---