473,791 Members | 2,933 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Extracting a number from a string?

ORC
Is there an easy way to extract a number from a string like:
result = ExtractNumber(" this is a 4 string");

which should give the result = 4;

Thanks
Ole
Nov 16 '05 #1
5 6879
Split the string and then parse all of the substrings. If the substring
parses without an exception, it's a number.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"ORC" <or*@sol.dk> wrote in message
news:eM******** *******@TK2MSFT NGP14.phx.gbl.. .
Is there an easy way to extract a number from a string like:
result = ExtractNumber(" this is a 4 string");

which should give the result = 4;

Thanks
Ole

Nov 16 '05 #2
like this..

foreach(string s in originalstring. Split(new char[]{' '}))
{
try
{
int n=int.Parse(s);
MessageBox.Show ("Found the number "+n.ToString()) ;
}
catch(Exception )
{
MessageBox.Show (s+" isn't a number!");
}
}

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"ORC" <or*@sol.dk> wrote in message
news:eM******** *******@TK2MSFT NGP14.phx.gbl.. .
Is there an easy way to extract a number from a string like:
result = ExtractNumber(" this is a 4 string");

which should give the result = 4;

Thanks
Ole

Nov 16 '05 #3
Hi,

No, for this you should use regular expressions , extract the number(s) and
then use Convert.ToInt()

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"ORC" <or*@sol.dk> wrote in message
news:eM******** *******@TK2MSFT NGP14.phx.gbl.. .
Is there an easy way to extract a number from a string like:
result = ExtractNumber(" this is a 4 string");

which should give the result = 4;

Thanks
Ole

Nov 16 '05 #4
Try using Regular Expressions.

Cheers,
Bryan
--
Composed with Newz Crawler 1.7 http://www.newzcrawler.com/
Nov 16 '05 #5
I was involved in a discussion about this about a year ago.

Original article:
http://www.dotnetjunkies.com/Tutoria...C0B7A7E36.dcik

My (and others') comments:
http://www.dotnetjunkies.com/Forums/...spx?PostID=897
(Be sure to read the comments....)

--
Truth,
James Curran
[erstwhile VC++ MVP]
Home: www.noveltheory.com Work: www.njtheater.com
Blog: www.honestillusion.com Day Job: www.partsearch.com
"ORC" <or*@sol.dk> wrote in message
news:eM******** *******@TK2MSFT NGP14.phx.gbl.. .
Is there an easy way to extract a number from a string like:
result = ExtractNumber(" this is a 4 string");

which should give the result = 4;

Nov 16 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1430
by: bill tie | last post by:
Suppose it's Oct. 2, 2004 and time is 03:01:27. I need a number (integer) that is in this form: days hours minutes seconds Using the example, the number will be: 2030127
0
1116
by: Gianluca | last post by:
Anyone knows some open source code to parse date and number strings? The parse functions in the .NET framework are buggy and cannot test for the validity of the string without throwing an exception, which is extremely slow in debug mode and in some cases it's simply impossible to debug. For example, you cannot step over a function that parses few thousand strings from the db because it can take forever.
3
3417
by: Tracey | last post by:
I'm learning C++ and was stuck when writing code to convert a negative decimal number string to a hexdecimal number. For example, suppose the function interface is defined as: int atoi( const char*, size_t radix) One input string is "-1234" and radix is 16. How to get the correct hexdecimal integer? Can anyone help ? Thanks in advance!
7
1732
by: jack | last post by:
Hello, I need to get the time down the the 0.1 second in a number string. Example 09-06-03 13:45 23.4 Seconds To "0906031345234"
1
2045
by: detho | last post by:
Hi everyone... I am currently developing a streaming movie front-end for my companies' intranet. The script is done with PHP on the back-end and HTML and CSS for the front-end. Basically, the script displays the available videos in a list of links and when the user clicks on the video, the script grabs the query string information and concatinates the appropriate filename into a variable which is used to start Windows Media Player.
3
2077
by: Jim Tittsler | last post by:
Is there a standard recipe for getting the subversion revision number into my Python-based application each time I package it up with distutils? (Not just the package name, but also a string that I will display in my app's "About" dialog.)
9
1605
by: alexscript | last post by:
Hi , The xml file is generated as a webpage. The XML file is just 10 lines. The XML file will be like this : <ABC> <D someattribute=""> <EF baseRef="http://.............." id="some id value" /> </D> <D someattribute=""> <EF baseRef="http://.............." id="some id value" /> </D>
3
23795
by: ccarter45 | last post by:
I really need help with this. Your tips are greatly appreciated: import java.util.Scanner; public class PhoneNumbers { public static void main(String args){ Scanner input; Scanner scan = new Scanner(System.in);//get user input
2
1807
by: Per Juul Larsen | last post by:
hi. I do want to extract this string "abcdefg" from string "C:\dir1\dir2\abcdefg-12345gsd" Note : the length of the text string "abcdefg" may vary, but the last character is always "-". I need only the string "abcdefg" not "-12345gsd"
9
3904
by: korea saeed | last post by:
how can i convert number string to number?(without using parsint)
0
9669
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9515
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10426
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10154
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9029
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6776
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5558
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4109
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3713
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.