Talk:Determine if a string is numeric: Difference between revisions

From Rosetta Code
Content added Content deleted
 
(23 intermediate revisions by 15 users not shown)
Line 6: Line 6:


[[User:JimD|JimD]] 16:16, 11 October 2007 (MDT)
[[User:JimD|JimD]] 16:16, 11 October 2007 (MDT)

:I think you are right: if you pass a void string, it returns ''true'' ... But it could be interpreted like: a void string can rapresent anything... :D I rather would add

<c>if ( s==NULL ) return 0;
if ( *s == 0 ) return 0;</c>

:This checks also for NULL pointer passed (odd!). --[[User:ShinTakezou|ShinTakezou]] 22:52, 11 December 2008 (UTC)
:: I've fixed the example (with a slightly more compact <code>if</code> :-)). BTW, there's no void string, only an empty string (well, one could call the null pointer a void string :-)). --[[User:Ce|Ce]] 14:12, 12 December 2008 (UTC)
:::Semanthic. Void means void (i.e., so to say, a container without contents); the same as empty. (Maybe I ''feel'' it since I am italian, so the fact that C uses the term its way does not let me think I can't use it as normally I would, to say ''empty''. By empty C string, I mean a pointer to a byte which is '\0'. ([http://www.merriam-webster.com/dictionary/void void Webster definition])


== Unix shell ==
== Unix shell ==
Line 25: Line 34:
For those who don't know VB: How exactly is IsNumeric defined?
For those who don't know VB: How exactly is IsNumeric defined?
For example: Is leading/trailing whitespace allowed (i.e. " 123" or "123 ")?
For example: Is leading/trailing whitespace allowed (i.e. " 123" or "123 ")?
Does it also accept floting point values (e.g. "2.5" or "1e5")?
Does it also accept floating point values (e.g. "2.5" or "1e5")?
What about thousands separators (e.g. "10,000")? Is that locale-dependent?
What about thousands separators (e.g. "10,000")? Is that locale-dependent?
Are numbers in other bases (e.g. hexadecimal) allowed (assuming VB supports them otherwise)?
Are numbers in other bases (e.g. hexadecimal) allowed (assuming VB supports them otherwise)?
Line 52: Line 61:
:: Should we tag the task for clarification? [[User:Sgeier|Sgeier]] 10:34, 20 September 2007 (MDT)
:: Should we tag the task for clarification? [[User:Sgeier|Sgeier]] 10:34, 20 September 2007 (MDT)


:::I think we need clarification of what is classed as a numeric string. Are commas allowed in the string? Must they be in certain places? What about strings containing numbers represented using underscore annotation? Or numbers in a notation that represents a non-decimal base?
== Tramadol online tramadol. Cheapest Tramadol Online Price ==
Which of the following example strings are classed as numeric for the purpose of this task?

* "20,376"
* "20367"
* "20 368"
* "203 69"
* "20_367"
* "203_76"
* "0x1234" - Hexadecimal
* "0xFFFF" - Hexadecimal
* "0xFFGF" - Is this invalid hexidecimal?
* "01677" - This could be an octal number
* "01678" - This could be an invalid octal number
* "0b10101000" - Could be a binary number
* "0b10102010" - This is probably an invalid binary number
* "10101000b" - This is a binary number in an alternative notation
* "10101020b" - This is an invalid binary number
* "1677o" - This is an octal number in an alternative notation
* "1678o" - This is an invalid octal number in an alternative notation
* "1234h" - Hexadecimal alternative notation
* "FFFFh" - Hexadecimal alternative notation
* "FFFGh" - This is not a valid hexadecimal number
* "+27" - The positive number 27
* "3+2" - This is an expression

--[[User:Markhobley|Markhobley]] 16:28, 4 June 2011 (UTC)
:Whatever would be a legal numeric literal accepted by the language compiler/interpreter - thus making it language specific? --[[User:Paddy3118|Paddy3118]] 20:10, 4 June 2011 (UTC)
::I'm not sure. In theory, the application program could support the various numeric formats, even though the underlying language may not. --[[User:Markhobley|Markhobley]] 21:38, 4 June 2011 (UTC)

I think we can say that expressions and the invalid numbers are not numeric strings, but this then means we need sufficient logic in the code to be able to identify these as such.

In the past, I have assumed that the number system was decimal and accepted only digits, an optional leading hyphen, and a single decimal point. With that logic, "a numeric string is a string consisting only of digits, an optional leading hyphen and an optional single decimal point". Maybe this is the way to go. Note that in some locales, numeric strings fall outside of this definition, so this also needs to be considered. Under that definition strings containing whitespace return a result of "not numeric", but this does not matter in practice, because code that makes use of the result can easily trim whitespace from the string before feeding it to the evaluator (I have done this before and it has worked well for me). --[[User:Markhobley|Markhobley]] 21:38, 4 June 2011 (UTC)

: If a leading hyphen (minus sign) is OK, why not a leading plus sign as well (but not both, of course)? &nbsp; "A leading hyphen" was mentioned, but I assume you meant a ''single'' leading hyphen (minus sign). &nbsp; However, some languages allow multiple leading signs. -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 17:57, 28 September 2013 (UTC)

== Objective-C question ==

An anonymous user had posted a question about the Objective-C example. I'll try to translate.

"How to check the whole string to make sure it is numeric?" was the original question. I think they were looking for a character by character check? Maybe a regex? What do you Ob-C people think? --[[User:Mwn3d|Mwn3d]] 21:46, 11 December 2008 (UTC)

:As it was before, the code say the "123Not Numeric" is numeric... I made it so that it says it is numeric iff the whole string is a number. (By the way, this one says numeric for float, other implementation here would say that "123.3" is not numeric since they check for integer only...) --[[User:ShinTakezou|ShinTakezou]] 23:12, 11 December 2008 (UTC)

== How literally need the examples follow the task? ==

The task description says »A number in the syntax the language uses for literals« and that floating-point numbers should be included. First off, this probable invalidates any solution that uses the language's normal string-to-number routines since those usually are locale-aware. A string like <code>1.234.567,141</code> will convert fine on my system (using <code>de-DE</code> as locale but wouldn't be a valid numeric literal in the programming languages I know.

Furthermore – similar to the VB discussion above – many programming languages allow floating point numbers to be in the form <code>1.23e15</code> which is currently handled by very few, if any, examples. In a similar vein, hexadecimal, octal or binary numeric literals – in C and languages that follow its conventions closely, <code>09</code> would ''not'' be a valid numeric literal. —[[User:Hypftier|Johannes Rössel]] 17:56, 6 July 2010 (UTC)

:I would stick to the numeric literals that you could write in your source and get accepted as a number. If your compiler or interpreter doesn't accept locale-aware things like extra dots or commas then I'd say you were fine, (but what do I know).
:I guess examples should note if there are types of numeric literals of their language that the routines ''don't'' accept, but I think that some examples were written to implement something seen in other examples rather than with an idea to cover all the numeric literal forms the language allows. --[[User:Paddy3118|Paddy3118]] 02:44, 7 July 2010 (UTC)

==Mathematica seems lean?==
It just seems to me that Mathematica should have ways to recognize many more number types than the current entry seems to suggest. compare the E, Forth and Python entries. --[[User:Paddy3118|Paddy3118]] 14:54, 26 August 2010 (UTC)

== Second MATLAB solution might have a problem ==

I don't know if you want to call it "incorrect", but I think the second MATLAB solution would call "...." numeric. I don't see any way of determining that there is only one decimal point in the string. --[[User:Mwn3d|Mwn3d]] 15:59, 2 February 2012 (UTC)

== Problem with the VB.net example ==

The IsNumeric call will not always return a correct answer. Try "1234+" - IsNumeric will return True. Then pass this same value as an argument to Convert.ToDouble: it will fail "unhandled exception". There's no option but to loop thru the String character by character and check that each one is within range. --[[User:LazyZee|LazyZee]] 17:59, 19 October 2012 (UTC)

== R ==

The solution will not work correctly if the string contains "NA" (not a number). But NA can be used in numeric calculations. --[[User:Sigbert|Sigbert]] ([[User talk:Sigbert|talk]]) 13:01, 16 February 2015 (UTC)

== AWK code is wrong ==

<pre>
awk 'BEGIN { x = "01"; print x == x+0 }'
0
awk 'BEGIN { x = "+1"; print x == x+0 }'
0
awk 'BEGIN { x = "1x"; print x == x+0 }'
0
</pre>
But
<pre>
awk 'BEGIN { x = "1x"; print x+1 }'
2
</pre>

== Assembly implementation is harder than I thought==

The way I see it, the code will need to do the following:

Read the first character.
* If it's a null terminator, the program ends and the string is not numeric.
* If it's a minus sign, that's valid and so we can continue
* If it's a decimal point, that's valid and we can continue. However, the presence of a decimal point must be recorded. If the string contains a second decimal point it stops being numeric.
* If it's not a number, at this point the string is not numeric. Otherwise continue.

Read the second character.
* If it's the terminator, the string is numeric if the first character was a numeral. If the first character was a minus sign or decimal point, the string is not numeric.
* If the second character is a numeral, continue.
* If the second character is a decimal point, continue if we haven't seen one already. If there is more than one decimal point the string is not numeric.
* If the second character is anything else, the string is not numeric.

Loop through the rest of the string.
* If we encounter the terminator, the string is numeric.
* If we encounter a numeral, continue.
* If we encounter a second decimal point, the string is not numeric.
* If we encounter anything besides a numeral, the null terminator, or the first occurrence of a decimal point, the string is not numeric.

I've attempted this in both 8086 and z80 but it ends up looking like spaghetti no matter what I do.

: @[[User: Puppydrum64]]: Uhm, is this task even applicable for assembly? I don’t thinks so. You know, depending on the assembler used there are ''several'' ways to write numeric literals. In NASM, for instance, I can write <tt>0b0110_1101</tt>. There simply isn’t ''a/the'' programming language “8086 assembly” ''defining'' how to write numeric literals. What you are attempting to do, though, is rather writing an assembly function that accepts a null-terminated string that represents a valid numeric literal ''in C'' (and many ''other'' programming languages), but not “8086 assembly”, you know what I mean? [[User:Root|Root]] ([[User talk:Root|talk]]) 18:10, 20 August 2021 (UTC)


I get what you mean. I figured at least attempting something that represents a valid numeric literal in higher-level languages was as close as I could get. Throwing in the towel and just saying "This is assembly, there are no rules" would disqualify it from almost everything. --[[User:Puppydrum64|Puppydrum64]] ([[User talk:Puppydrum64|talk]]) 17:45, 15 September 2021 (UTC)
Cheapest Tramadol Prices. Free Shipping on Tramadol Orders. Click through the links below!
<b><a href=http://howtramadol.info/archive/buy-tramadol.html>buy tramadol</a></b>
<b><a href=http://howtramadol.info/archive/tramadol-online.html>tramadol online</a></b>
<b><a href=http://howtramadol.info/archive/cheap-tramadol.html>cheap tramadol</a></b>
<b><a href=http://howtramadol.info/archive/order-tramadol.html>order tramadol</a></b>
<b><a href=http://howtramadol.info/archive/buy-tramadol-online.html>buy tramadol online</a></b>
<b><a href=http://web.archive.org/web/20050807073912/casi.home.sapo.pt/online-casino/>online casino</a></b>
<a href=http://howtramadol.info/archive/place-of-tramadol-in-practice.html>place of tramadol in practice</a>
<a href=http://howtramadol.info/archive/heart-health-what-is-tramadol.html>heart health what is tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dementia.html>tramadol dementia</a>
<a href=http://howtramadol.info/archive/tramadol-discount.html>tramadol discount</a>
<a href=http://howtramadol.info/archive/tramadol-consult.html>tramadol consult</a>
<a href=http://howtramadol.info/archive/book-buy-online-tramadol-viscacha.html>book buy online tramadol viscacha</a>
<a href=http://howtramadol.info/archive/atkins-diet-menu-tramadol.html>atkins diet menu tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dream-pharmaceutical.html>tramadol dream pharmaceutical</a>
<a href=http://howtramadol.info/archive/tramadol-florida.html>tramadol florida</a>
<a href=http://howtramadol.info/archive/cheap-tramadol-very.html>cheap tramadol very</a>
<a href=http://howtramadol.info/archive/e-onlinecom-tramadol.html>e onlinecom tramadol</a>
<a href=http://howtramadol.info/archive/next-day-air-tramadol.html>next day air tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-100-er-description.html>tramadol 100 er description</a>
<a href=http://howtramadol.info/archive/tramadol-pregnancy.html>tramadol pregnancy</a>
<a href=http://howtramadol.info/archive/what-is-tramadol-used-for.html>what is tramadol used for</a>
<a href=http://howtramadol.info/archive/tramadol-bill-me-later.html>tramadol bill me later</a>
<a href=http://howtramadol.info/archive/aleeve-and-tramadol.html>aleeve and tramadol</a>
<a href=http://howtramadol.info/archive/ultram-order-prescription-tramadol-mg-tablets.html>ultram order prescription tramadol mg tablets</a>
<a href=http://howtramadol.info/archive/tramadol-order.html>tramadol order</a>
<a href=http://howtramadol.info/archive/acet-tramadol.html>acet tramadol</a>
<a href=http://howtramadol.info/archive/ic-tramadol.html>ic tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-120-pills.html>tramadol 120 pills</a>
<a href=http://howtramadol.info/archive/hoodia-diet-pill-buy-now-tramadol.html>hoodia diet pill buy now tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-withdrawals.html>tramadol withdrawals</a>
<a href=http://howtramadol.info/archive/tramadol-ingrediants.html>tramadol ingrediants</a>
<a href=http://howtramadol.info/archive/tramadol-drug-medication.html>tramadol drug medication</a>
<a href=http://howtramadol.info/archive/180-ct-tramadol-cod-delivery.html>180 ct tramadol cod delivery</a>
<a href=http://howtramadol.info/archive/buy-tramadol-online-overnight.html>buy tramadol online overnight</a>
<a href=http://howtramadol.info/archive/tramadol-night-sweats.html>tramadol night sweats</a>
<a href=http://howtramadol.info/archive/pain-medications-tramadol.html>pain medications tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-psoriasis.html>tramadol psoriasis</a>
<a href=http://howtramadol.info/archive/tramadol-false-positive-pcp.html>tramadol false positive pcp</a>
<a href=http://howtramadol.info/archive/tramadol-online-overnight.html>tramadol online overnight</a>
<a href=http://howtramadol.info/archive/tramadol-by-mail.html>tramadol by mail</a>
<a href=http://howtramadol.info/archive/no-fax-payday-loan-tramadol.html>no fax payday loan tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-adverse-afects.html>tramadol adverse afects</a>
<a href=http://howtramadol.info/archive/tramadol-shipped-cod.html>tramadol shipped cod</a>
<a href=http://howtramadol.info/archive/doctor-online-prescription-tramadol.html>doctor online prescription tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-doses.html>tramadol doses</a>
<a href=http://howtramadol.info/archive/tramadol-drug-tests.html>tramadol drug tests</a>
<a href=http://howtramadol.info/archive/tramadol-and-drug-rating-questionnaire.html>tramadol and drug rating questionnaire</a>
<a href=http://howtramadol.info/archive/by-cod-money-order-order-tramadol.html>by cod money order order tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-celexa.html>tramadol and celexa</a>
<a href=http://howtramadol.info/archive/89118-pain-physician-tramadol.html>89118 pain physician tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-pill-identification.html>tramadol pill identification</a>
<a href=http://howtramadol.info/archive/generic-er-tramadol.html>generic er tramadol</a>
<a href=http://howtramadol.info/archive/aetna-us-health-care-cheap-tramadol.html>aetna us health care cheap tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-acetaminophen-par-and-weight-loss.html>tramadol hcl acetaminophen par and weight loss</a>
<a href=http://howtramadol.info/archive/beitrag-hinzufgen-name-text-tramadol.html>beitrag hinzufgen name text tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-in-system-drug-test.html>tramadol in system drug test</a>
<a href=http://howtramadol.info/archive/buy-dreampharmaceuticals-online-tramadol.html>buy dreampharmaceuticals online tramadol</a>
<a href=http://howtramadol.info/archive/pharmacology-tramadol.html>pharmacology tramadol</a>
<a href=http://howtramadol.info/archive/prepare-tramadol-for-intravenous-injection.html>prepare tramadol for intravenous injection</a>
<a href=http://howtramadol.info/archive/tramadol-an-627.html>tramadol an 627</a>
<a href=http://howtramadol.info/archive/cheapest-tramadol-free.html>cheapest tramadol free</a>
<a href=http://howtramadol.info/archive/hypotension-tramadol.html>hypotension tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-drug-screen.html>tramadol drug screen</a>
<a href=http://howtramadol.info/archive/tramadol-urine-detection-time.html>tramadol urine detection time</a>
<a href=http://howtramadol.info/archive/how-does-tramadol-make-you-feel.html>how does tramadol make you feel</a>
<a href=http://howtramadol.info/archive/bupropion-buy-tramadol-online-bupropion-antidepres.html>bupropion buy tramadol online bupropion antidepres</a>
<a href=http://howtramadol.info/archive/alprazolam-and-tramadol-toxicity.html>alprazolam and tramadol toxicity</a>
<a href=http://howtramadol.info/archive/uses-of-tramadol.html>uses of tramadol</a>
<a href=http://howtramadol.info/archive/overnight-tramadol-money-order.html>overnight tramadol money order</a>
<a href=http://howtramadol.info/archive/ultram-sniffing-tramadol.html>ultram sniffing tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-online-order.html>tramadol online order</a>
<a href=http://howtramadol.info/archive/buy-tramadol-onlinea0.html>buy tramadol onlinea0</a>
<a href=http://howtramadol.info/archive/tramadol-dosage-calculations-for-veterinarians.html>tramadol dosage calculations for veterinarians</a>
<a href=http://howtramadol.info/archive/ibuprofen-pills-difference-tramadol-pills.html>ibuprofen pills difference tramadol pills</a>
<a href=http://howtramadol.info/archive/tramadol-drug-tets.html>tramadol drug tets</a>
<a href=http://howtramadol.info/archive/buy-tramadol-50mg.html>buy tramadol 50mg</a>
<a href=http://howtramadol.info/archive/tramadol-usage.html>tramadol usage</a>
<a href=http://howtramadol.info/archive/tramadol-order-overnight-saturday-delivery-77.html>tramadol order overnight saturday delivery 77</a>
<a href=http://howtramadol.info/archive/tramadol-600-mg.html>tramadol 600 mg</a>
<a href=http://howtramadol.info/archive/tramadol-online-order-eu.html>tramadol online order eu</a>
<a href=http://howtramadol.info/archive/order-tramadol-no-prescription.html>order tramadol no prescription</a>
<a href=http://howtramadol.info/archive/buy-tramadol-180-tabs.html>buy tramadol 180 tabs</a>
<a href=http://howtramadol.info/archive/info-on-tramadol-hcl.html>info on tramadol hcl</a>
<a href=http://howtramadol.info/archive/st-johns-wart-tramadol.html>st johns wart tramadol</a>
<a href=http://howtramadol.info/archive/can-you-inject-tramadol.html>can you inject tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-online-tramadol-hcl-tramadol-cheap.html>tramadol online tramadol hcl tramadol cheap</a>
<a href=http://howtramadol.info/archive/tramadol-transdermal.html>tramadol transdermal</a>
<a href=http://howtramadol.info/archive/tramadol-kidneys.html>tramadol kidneys</a>
<a href=http://howtramadol.info/archive/morphine-tramadol-dosage-equivalent.html>morphine tramadol dosage equivalent</a>
<a href=http://howtramadol.info/archive/buy-tramadol-online-tramadol-online.html>buy tramadol online tramadol online</a>
<a href=http://howtramadol.info/archive/tramadol-paid-with-mastercard.html>tramadol paid with mastercard</a>
<a href=http://howtramadol.info/archive/diclofenac-sodium-compared-with-tramadol.html>diclofenac sodium compared with tramadol</a>
<a href=http://howtramadol.info/archive/interaction-tramadol-warfarin.html>interaction tramadol warfarin</a>
<a href=http://howtramadol.info/archive/tramadol-180-tablets.html>tramadol 180 tablets</a>
<a href=http://howtramadol.info/archive/hydocan-tramadol.html>hydocan tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-a-narcotic.html>tramadol a narcotic</a>
<a href=http://howtramadol.info/archive/acetaminophen-and-tramadol.html>acetaminophen and tramadol</a>
<a href=http://howtramadol.info/archive/cheap-online-tramadol.html>cheap online tramadol</a>
<a href=http://howtramadol.info/archive/from-tramadol.html>from tramadol</a>
<a href=http://howtramadol.info/archive/ultram-tramadol-select-health-insurance-coverage.html>ultram tramadol select health insurance coverage</a>
<a href=http://howtramadol.info/archive/canine-tramadol-side-effects.html>canine tramadol side effects</a>
<a href=http://howtramadol.info/archive/compare-price-tramadol.html>compare price tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-canada-side-affects.html>tramadol canada side affects</a>
<a href=http://howtramadol.info/archive/lyricaland-tramadol-contraindications.html>lyricaland tramadol contraindications</a>
<a href=http://howtramadol.info/archive/fed-ex-tramadol.html>fed ex tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-pain-management.html>tramadol pain management</a>
<a href=http://howtramadol.info/archive/tramadol-dosage-calculations-for-dogs.html>tramadol dosage calculations for dogs</a>
<a href=http://howtramadol.info/archive/order-tramadol-order.html>order tramadol order</a>
<a href=http://howtramadol.info/archive/buy-here-so-tramadol.html>buy here so tramadol</a>
<a href=http://howtramadol.info/archive/cialis-viagra-levitra-tramadol.html>cialis viagra levitra tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dogs-side-effects.html>tramadol dogs side effects</a>
<a href=http://howtramadol.info/archive/hydrocodone-app-and-tramadol-hcl-compare.html>hydrocodone app and tramadol hcl compare</a>
<a href=http://howtramadol.info/archive/gambling-tramadol-phentermine-carisoprodol-casino.html>gambling tramadol phentermine carisoprodol casino</a>
<a href=http://howtramadol.info/archive/pharmacy-order-tramadol.html>pharmacy order tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hydrochloride-synonym.html>tramadol hydrochloride synonym</a>
<a href=http://howtramadol.info/archive/tramadol-cod-tramadol.html>tramadol cod tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hydrochloride-usan.html>tramadol hydrochloride usan</a>
<a href=http://howtramadol.info/archive/cod-tramadol-calmador-zytrim.html>cod tramadol calmador zytrim</a>
<a href=http://howtramadol.info/archive/tramadol-drug-classification.html>tramadol drug classification</a>
<a href=http://howtramadol.info/archive/pravachol-buy-tramadol.html>pravachol buy tramadol</a>
<a href=http://howtramadol.info/archive/drug-information-keyword-p-tramadol.html>drug information keyword p tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dog-dosage-mg.html>tramadol dog dosage mg</a>
<a href=http://howtramadol.info/archive/vioxx-lawyer-tramadol.html>vioxx lawyer tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-oxycodone.html>tramadol and oxycodone</a>
<a href=http://howtramadol.info/archive/tramadol-pain-pills.html>tramadol pain pills</a>
<a href=http://howtramadol.info/archive/tramadol-lead-investigator.html>tramadol lead investigator</a>
<a href=http://howtramadol.info/archive/tramadol-canine.html>tramadol canine</a>
<a href=http://howtramadol.info/archive/price-search-tramadol.html>price search tramadol</a>
<a href=http://howtramadol.info/archive/cheap-drug-prescription-tramadol-viagra-viagra.html>cheap drug prescription tramadol viagra viagra</a>
<a href=http://howtramadol.info/archive/50-hcl-mg-tramadol.html>50 hcl mg tramadol</a>
<a href=http://howtramadol.info/archive/hydrocodone-pain-tramadol.html>hydrocodone pain tramadol</a>
<a href=http://howtramadol.info/archive/all-about-phentermine-and-tramadol-seenforum.html>all about phentermine and tramadol seenforum</a>
<a href=http://howtramadol.info/archive/ultram-patient-information-instructions-tramadol-hcl.html>ultram patient information instructions tramadol hcl</a>
<a href=http://howtramadol.info/archive/ultracet-tramadol-hcl.html>ultracet tramadol hcl</a>
<a href=http://howtramadol.info/archive/tramadol-headache-medication.html>tramadol headache medication</a>
<a href=http://howtramadol.info/archive/using-tramadol-to-get-high.html>using tramadol to get high</a>
<a href=http://howtramadol.info/archive/xpress-rx-tramadol-50mg-by-fedex.html>xpress rx tramadol 50mg by fedex</a>
<a href=http://howtramadol.info/archive/tramadol-worse.html>tramadol worse</a>
<a href=http://howtramadol.info/archive/drug-interaction-toprol-tramadol.html>drug interaction toprol tramadol</a>
<a href=http://howtramadol.info/archive/buy-online-prescription-tramadol-without.html>buy online prescription tramadol without</a>
<a href=http://howtramadol.info/archive/buy-cheap-tramadol-120-cod.html>buy cheap tramadol 120 cod</a>
<a href=http://howtramadol.info/archive/babies-addicted-to-tramadol.html>babies addicted to tramadol</a>
<a href=http://howtramadol.info/archive/pain-pill-addiction-tramadol.html>pain pill addiction tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-ship-on-saturday.html>tramadol ship on saturday</a>
<a href=http://howtramadol.info/archive/cheap-qoclick-tramadol.html>cheap qoclick tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-police.html>tramadol police</a>
<a href=http://howtramadol.info/archive/pharmacy-tech-school-tramadol.html>pharmacy tech school tramadol</a>
<a href=http://howtramadol.info/archive/tachycardia-tramadol-burning-sensation.html>tachycardia tramadol burning sensation</a>
<a href=http://howtramadol.info/archive/tramadol-contraindication.html>tramadol contraindication</a>
<a href=http://howtramadol.info/archive/lorazapam-and-tramadol.html>lorazapam and tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-menstrual-cramps.html>tramadol and menstrual cramps</a>
<a href=http://howtramadol.info/archive/tramadol-order-by-am-saturday.html>tramadol order by am saturday</a>
<a href=http://howtramadol.info/archive/what-is-tramadol-hcl-50mg.html>what is tramadol hcl 50mg</a>
<a href=http://howtramadol.info/archive/buying-tramadol-tramadol-florida.html>buying tramadol tramadol florida</a>
<a href=http://howtramadol.info/archive/tramadol-side-affects.html>tramadol side affects</a>
<a href=http://howtramadol.info/archive/web-tramadol.html>web tramadol</a>
<a href=http://howtramadol.info/archive/buy-cheap-tramadol-buy.html>buy cheap tramadol buy</a>
<a href=http://howtramadol.info/archive/tramadol-with-no-prescription.html>tramadol with no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-to-p-o-box.html>tramadol to p o box</a>
<a href=http://howtramadol.info/archive/tramadol-here-tramadol-drug-online.html>tramadol here tramadol drug online</a>
<a href=http://howtramadol.info/archive/wikipedia-tramadol.html>wikipedia tramadol</a>
<a href=http://howtramadol.info/archive/klonopin-and-tramadol.html>klonopin and tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-can-you-take-tylenol.html>tramadol can you take tylenol</a>
<a href=http://howtramadol.info/archive/forex-trading-buy-tramadol.html>forex trading buy tramadol</a>
<a href=http://howtramadol.info/archive/purchase-tramadol-without-a-prescription.html>purchase tramadol without a prescription</a>
<a href=http://howtramadol.info/archive/tramadol-side-effects-information.html>tramadol side effects information</a>
<a href=http://howtramadol.info/archive/cash-loans-online-buy-tramadol.html>cash loans online buy tramadol</a>
<a href=http://howtramadol.info/archive/increase-the-effects-of-tramadol.html>increase the effects of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dosage-for-dogs.html>tramadol dosage for dogs</a>
<a href=http://howtramadol.info/archive/wholesale-tramadol.html>wholesale tramadol</a>
<a href=http://howtramadol.info/archive/buy-discount-tramadol-free-prescription.html>buy discount tramadol free prescription</a>
<a href=http://howtramadol.info/archive/tramadol-hydrochloride-dose.html>tramadol hydrochloride dose</a>
<a href=http://howtramadol.info/archive/tramadol-genetic-name.html>tramadol genetic name</a>
<a href=http://howtramadol.info/archive/2737-aid-tramadol-zyrtec.html>2737 aid tramadol zyrtec</a>
<a href=http://howtramadol.info/archive/easiest-drugs-tramadol-carisoprodol.html>easiest drugs tramadol carisoprodol</a>
<a href=http://howtramadol.info/archive/tramadol-product-information.html>tramadol product information</a>
<a href=http://howtramadol.info/archive/overdose-tramadol.html>overdose tramadol</a>
<a href=http://howtramadol.info/archive/cor-127-tramadol.html>cor 127 tramadol</a>
<a href=http://howtramadol.info/archive/heating-tramadol-hydrochloride.html>heating tramadol hydrochloride</a>
<a href=http://howtramadol.info/archive/cheap-online-tramadol-no-prescription.html>cheap online tramadol no prescription</a>
<a href=http://howtramadol.info/archive/what-is-tramadol-50-mg.html>what is tramadol 50 mg</a>
<a href=http://howtramadol.info/archive/cod-order-tramadol.html>cod order tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-180-fedex.html>tramadol 180 fedex</a>
<a href=http://howtramadol.info/archive/we-will-ship-to-fl-tramadol.html>we will ship to fl tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-50mg-dogs.html>tramadol 50mg dogs</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-50mg-tablet.html>tramadol hcl 50mg tablet</a>
<a href=http://howtramadol.info/archive/district-of-columbia-tramadol-and-sertraline.html>district of columbia tramadol and sertraline</a>
<a href=http://howtramadol.info/archive/acetaminophen-tramadol-hcl-acetaminophen-take-vicodin.html>acetaminophen tramadol hcl acetaminophen take vicodin</a>
<a href=http://howtramadol.info/archive/canine-tramadol-doseage.html>canine tramadol doseage</a>
<a href=http://howtramadol.info/archive/tramadol-addiction-symptoms.html>tramadol addiction symptoms</a>
<a href=http://howtramadol.info/archive/taking-tramadol-with-a-laxative.html>taking tramadol with a laxative</a>
<a href=http://howtramadol.info/archive/cod-tramadol-money-orders.html>cod tramadol money orders</a>
<a href=http://howtramadol.info/archive/canine-tramadol.html>canine tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-withdrawal.html>tramadol withdrawal</a>
<a href=http://howtramadol.info/archive/tramadol-180-pills-99.html>tramadol 180 pills 99</a>
<a href=http://howtramadol.info/archive/tramadol-mutual-vs-akyma.html>tramadol mutual vs akyma</a>
<a href=http://howtramadol.info/archive/indication-of-tramadol.html>indication of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-50mg-capsules.html>tramadol 50mg capsules</a>
<a href=http://howtramadol.info/archive/cheap-tramadol-with-saturday-delivery.html>cheap tramadol with saturday delivery</a>
<a href=http://howtramadol.info/archive/tramadol-causes-acid-reflux.html>tramadol causes acid reflux</a>
<a href=http://howtramadol.info/archive/high-blood-pressure-and-tramadol.html>high blood pressure and tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-er-and-itching.html>tramadol er and itching</a>
<a href=http://howtramadol.info/archive/apap-tab-tramadol.html>apap tab tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hc-37-5mg.html>tramadol hc 37 5mg</a>
<a href=http://howtramadol.info/archive/anaphylactic-symptoms-tramadol.html>anaphylactic symptoms tramadol</a>
<a href=http://howtramadol.info/archive/man-health-buy-tramadol-now.html>man health buy tramadol now</a>
<a href=http://howtramadol.info/archive/pain-reliever-tramadol.html>pain reliever tramadol</a>
<a href=http://howtramadol.info/archive/by-cod-tramadol.html>by cod tramadol</a>
<a href=http://howtramadol.info/archive/allegra-nasacort-aq-prevacid-tramadol.html>allegra nasacort aq prevacid tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-marjauna.html>tramadol and marjauna</a>
<a href=http://howtramadol.info/archive/transforming-tramadol.html>transforming tramadol</a>
<a href=http://howtramadol.info/archive/is-ordering-tramadol-online-illigal.html>is ordering tramadol online illigal</a>
<a href=http://howtramadol.info/archive/tramadol-vs-vicodin.html>tramadol vs vicodin</a>
<a href=http://howtramadol.info/archive/chemical-supplier-tramadol-hcl.html>chemical supplier tramadol hcl</a>
<a href=http://howtramadol.info/archive/pain-tramadol.html>pain tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-complete-pills.html>tramadol complete pills</a>
<a href=http://howtramadol.info/archive/phase-safety-study-tramadol-extended.html>phase safety study tramadol extended</a>
<a href=http://howtramadol.info/archive/tramadol-coupons.html>tramadol coupons</a>
<a href=http://howtramadol.info/archive/how-long-does-tramadol-withdrawal-last.html>how long does tramadol withdrawal last</a>
<a href=http://howtramadol.info/archive/cost-of-tramadol.html>cost of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-cheap-free-fed-ex-overnight.html>tramadol cheap free fed ex overnight</a>
<a href=http://howtramadol.info/archive/tramadol-addiction-relief.html>tramadol addiction relief</a>
<a href=http://howtramadol.info/archive/ssri-tramadol.html>ssri tramadol</a>
<a href=http://howtramadol.info/archive/withdrawl-from-tramadol.html>withdrawl from tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-canine-generic-tramadol-tramadol-line.html>tramadol canine generic tramadol tramadol line</a>
<a href=http://howtramadol.info/archive/how-to-dissolve-tramadol.html>how to dissolve tramadol</a>
<a href=http://howtramadol.info/archive/tremadol-tramadol-180-pills.html>tremadol tramadol 180 pills</a>
<a href=http://howtramadol.info/archive/tramadol-hudrochloride-opioid-content.html>tramadol hudrochloride opioid content</a>
<a href=http://howtramadol.info/archive/nasal-allergies-allegra-tramadol-acyclovir.html>nasal allergies allegra tramadol acyclovir</a>
<a href=http://howtramadol.info/archive/tramadol-recreational-use.html>tramadol recreational use</a>
<a href=http://howtramadol.info/archive/tramadol-and-paxil.html>tramadol and paxil</a>
<a href=http://howtramadol.info/archive/drug-hydrochloride-tramadol-buy-tramadol.html>drug hydrochloride tramadol buy tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-meningitis.html>tramadol meningitis</a>
<a href=http://howtramadol.info/archive/tramadol-prescriptions.html>tramadol prescriptions</a>
<a href=http://howtramadol.info/archive/discount-pharmacies-cod-tramadol.html>discount pharmacies cod tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl50mg.html>tramadol hcl50mg</a>
<a href=http://howtramadol.info/archive/expired-tramadol.html>expired tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dependence.html>tramadol dependence</a>
<a href=http://howtramadol.info/archive/50mg-hcl-tramadol.html>50mg hcl tramadol</a>
<a href=http://howtramadol.info/archive/side-effects-of-tramadol-in-canines.html>side effects of tramadol in canines</a>
<a href=http://howtramadol.info/archive/cheap-tramadol-prices-usa.html>cheap tramadol prices usa</a>
<a href=http://howtramadol.info/archive/tramadol-and-ivf.html>tramadol and ivf</a>
<a href=http://howtramadol.info/archive/forex-tradingubuy-tramadol.html>forex tradingubuy tramadol</a>
<a href=http://howtramadol.info/archive/cod-tablet-tramadol.html>cod tablet tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-cod-overnight.html>tramadol cod overnight</a>
<a href=http://howtramadol.info/archive/tramadol-50-mg-tablets-comparisons.html>tramadol 50 mg tablets comparisons</a>
<a href=http://howtramadol.info/archive/tramadol-veterinarian-medicine.html>tramadol veterinarian medicine</a>
<a href=http://howtramadol.info/archive/tramadol-mouthwash.html>tramadol mouthwash</a>
<a href=http://howtramadol.info/archive/tramadol-and-proproxiphine-combination.html>tramadol and proproxiphine combination</a>
<a href=http://howtramadol.info/archive/tramadol-serotonin-syndrome.html>tramadol serotonin syndrome</a>
<a href=http://howtramadol.info/archive/tramadol-tab-50mg-sid.html>tramadol tab 50mg sid</a>
<a href=http://howtramadol.info/archive/mobile-office-tramadol.html>mobile office tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-in-urine.html>tramadol in urine</a>
<a href=http://howtramadol.info/archive/will-tramadol-show-on-drug-tests.html>will tramadol show on drug tests</a>
<a href=http://howtramadol.info/archive/order-tramadol-cheap.html>order tramadol cheap</a>
<a href=http://howtramadol.info/archive/ibuprofen-tramadol.html>ibuprofen tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-vs-codiene.html>tramadol vs codiene</a>
<a href=http://howtramadol.info/archive/online-tramadol.html>online tramadol</a>
<a href=http://howtramadol.info/archive/cheapest-overnight-tramadol.html>cheapest overnight tramadol</a>
<a href=http://howtramadol.info/archive/keyword-prescription-qoclick-tramadol-without.html>keyword prescription qoclick tramadol without</a>
<a href=http://howtramadol.info/archive/tramadol-online-free-consultation.html>tramadol online free consultation</a>
<a href=http://howtramadol.info/archive/tramadol-opiates.html>tramadol opiates</a>
<a href=http://howtramadol.info/archive/generic-online-prescription-tramadol-ultram.html>generic online prescription tramadol ultram</a>
<a href=http://howtramadol.info/archive/what-does-ultram-tramadol-consist-of.html>what does ultram tramadol consist of</a>
<a href=http://howtramadol.info/archive/you-can-take-tramadol-rectally.html>you can take tramadol rectally</a>
<a href=http://howtramadol.info/archive/health-solutions-network-tramadol.html>health solutions network tramadol</a>
<a href=http://howtramadol.info/archive/does-tramadol-reduce-inflamation.html>does tramadol reduce inflamation</a>
<a href=http://howtramadol.info/archive/slow-release-tramadol.html>slow release tramadol</a>
<a href=http://howtramadol.info/archive/lowest-tramadol-prices.html>lowest tramadol prices</a>
<a href=http://howtramadol.info/archive/pharmacy-tech-buy-tramadol.html>pharmacy tech buy tramadol</a>
<a href=http://howtramadol.info/archive/cheap-tramadol-prices-free-shipping.html>cheap tramadol prices free shipping</a>
<a href=http://howtramadol.info/archive/tramadol-saturday.html>tramadol saturday</a>
<a href=http://howtramadol.info/archive/is-tramadol-addictive.html>is tramadol addictive</a>
<a href=http://howtramadol.info/archive/effects-od-tramadol.html>effects od tramadol</a>
<a href=http://howtramadol.info/archive/transdermal-tramadol.html>transdermal tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-tramadol-capsules-50mg.html>tramadol tramadol capsules 50mg</a>
<a href=http://howtramadol.info/archive/tramadol-compared-to-lortab.html>tramadol compared to lortab</a>
<a href=http://howtramadol.info/archive/addiction-tramadol.html>addiction tramadol</a>
<a href=http://howtramadol.info/archive/beta-blockers-tramadol.html>beta blockers tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-cheap-fast-no-prescription.html>tramadol cheap fast no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-usage-experiences.html>tramadol usage experiences</a>
<a href=http://howtramadol.info/archive/tramadol-out-of-urine-test.html>tramadol out of urine test</a>
<a href=http://howtramadol.info/archive/tramadol-online-free-consult-cheapest.html>tramadol online free consult cheapest</a>
<a href=http://howtramadol.info/archive/tramadol-pain-control.html>tramadol pain control</a>
<a href=http://howtramadol.info/archive/tramadol-cheap-overnight.html>tramadol cheap overnight</a>
<a href=http://howtramadol.info/archive/tramadol-for-pain.html>tramadol for pain</a>
<a href=http://howtramadol.info/archive/do-not-take-tramadol-with-tylenol.html>do not take tramadol with tylenol</a>
<a href=http://howtramadol.info/archive/flushed-feeling-and-tramadol.html>flushed feeling and tramadol</a>
<a href=http://howtramadol.info/archive/buy-tramadol-tablets.html>buy tramadol tablets</a>
<a href=http://howtramadol.info/archive/best-online-soma-buy-tramadol-now.html>best online soma buy tramadol now</a>
<a href=http://howtramadol.info/archive/cheap-tramadols-c-o-d.html>cheap tramadols c o d</a>
<a href=http://howtramadol.info/archive/tramadol-abuse-snort.html>tramadol abuse snort</a>
<a href=http://howtramadol.info/archive/extreme-weakness-nausea-tramadol.html>extreme weakness nausea tramadol</a>
<a href=http://howtramadol.info/archive/does-tramadol-work-for-premature-ejaculation.html>does tramadol work for premature ejaculation</a>
<a href=http://howtramadol.info/archive/tramadol-osage.html>tramadol osage</a>
<a href=http://howtramadol.info/archive/tramadol-120-tablets.html>tramadol 120 tablets</a>
<a href=http://howtramadol.info/archive/tramadol-renova.html>tramadol renova</a>
<a href=http://howtramadol.info/archive/tramadol-side-effects-canine.html>tramadol side effects canine</a>
<a href=http://howtramadol.info/archive/tramadol-great-buy.html>tramadol great buy</a>
<a href=http://howtramadol.info/archive/tramadol-drug-addiction.html>tramadol drug addiction</a>
<a href=http://howtramadol.info/archive/tramadol-apap.html>tramadol apap</a>
<a href=http://howtramadol.info/archive/buy-tramadol.html>buy tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-halflife-in-dogs.html>tramadol halflife in dogs</a>
<a href=http://howtramadol.info/archive/tramadol-free-prescription-dilivery-in-missouri.html>tramadol free prescription dilivery in missouri</a>
<a href=http://howtramadol.info/archive/tramadol-tamoxifen-online.html>tramadol tamoxifen online</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-side-effects.html>tramadol hcl side effects</a>
<a href=http://howtramadol.info/archive/lowest-price-of-tramadol.html>lowest price of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-in-veterinary-medicine.html>tramadol in veterinary medicine</a>
<a href=http://howtramadol.info/archive/tramadol-cheap-free-overnight-fedex.html>tramadol cheap free overnight fedex</a>
<a href=http://howtramadol.info/archive/50-mg-tramadol.html>50 mg tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-express-delivery.html>tramadol express delivery</a>
<a href=http://howtramadol.info/archive/tramadol-and-metformin.html>tramadol and metformin</a>
<a href=http://howtramadol.info/archive/cheap-tramadol-prescriptions-online.html>cheap tramadol prescriptions online</a>
<a href=http://howtramadol.info/archive/no-prescription-tramadol.html>no prescription tramadol</a>
<a href=http://howtramadol.info/archive/white-tramadol-58-93.html>white tramadol 58 93</a>
<a href=http://howtramadol.info/archive/tramadol-ocd.html>tramadol ocd</a>
<a href=http://howtramadol.info/archive/tramadol-to-treat-hydrocodone-withdrawal.html>tramadol to treat hydrocodone withdrawal</a>
<a href=http://howtramadol.info/archive/opiate-withdrawal-after-tramadol.html>opiate withdrawal after tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-canine-dosage.html>tramadol canine dosage</a>
<a href=http://howtramadol.info/archive/tramadol-fedex.html>tramadol fedex</a>
<a href=http://howtramadol.info/archive/synthesis-of-tramadol.html>synthesis of tramadol</a>
<a href=http://howtramadol.info/archive/ultram-tramadol-hci-tablets.html>ultram tramadol hci tablets</a>
<a href=http://howtramadol.info/archive/cheapest-tramadol-cod.html>cheapest tramadol cod</a>
<a href=http://howtramadol.info/archive/headache-tramadol.html>headache tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-chemical-supplier.html>tramadol hcl chemical supplier</a>
<a href=http://howtramadol.info/archive/tramadol-canine-dose.html>tramadol canine dose</a>
<a href=http://howtramadol.info/archive/buy-site-tramadol.html>buy site tramadol</a>
<a href=http://howtramadol.info/archive/how-is-ultram-better-tham-tramadol.html>how is ultram better tham tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-180-without.html>tramadol 180 without</a>
<a href=http://howtramadol.info/archive/tramadol-and-malignancy.html>tramadol and malignancy</a>
<a href=http://howtramadol.info/archive/tramadol-addition.html>tramadol addition</a>
<a href=http://howtramadol.info/archive/tramadol-overnight-best-price.html>tramadol overnight best price</a>
<a href=http://howtramadol.info/archive/rapid-detox-tramadol.html>rapid detox tramadol</a>
<a href=http://howtramadol.info/archive/delivery-online-prescription-saturday-tramadol.html>delivery online prescription saturday tramadol</a>
<a href=http://howtramadol.info/archive/zenegra-ultram-tramadol.html>zenegra ultram tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-free-shipping.html>tramadol free shipping</a>
<a href=http://howtramadol.info/archive/suboxone-2b-tramadol.html>suboxone 2b tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-order-cod.html>tramadol order cod</a>
<a href=http://howtramadol.info/archive/testimonials-tramadol.html>testimonials tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-show-up-on-drug-test.html>tramadol show up on drug test</a>
<a href=http://howtramadol.info/archive/photo-of-tramadol.html>photo of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-and-dog.html>tramadol hcl and dog</a>
<a href=http://howtramadol.info/archive/instant-release-tramadol.html>instant release tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-prescriptions-in-el-paso.html>tramadol prescriptions in el paso</a>
<a href=http://howtramadol.info/archive/wellington-tramadol.html>wellington tramadol</a>
<a href=http://howtramadol.info/archive/maximum-tramadol-dose-overdose-levels.html>maximum tramadol dose overdose levels</a>
<a href=http://howtramadol.info/archive/c-d-o-tramadol.html>c d o tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-headaches.html>tramadol and headaches</a>
<a href=http://howtramadol.info/archive/tramadol-ship-usps.html>tramadol ship usps</a>
<a href=http://howtramadol.info/archive/tapering-off-tramadol.html>tapering off tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-withdraw-support.html>tramadol withdraw support</a>
<a href=http://howtramadol.info/archive/tramadol-blood-pressure.html>tramadol blood pressure</a>
<a href=http://howtramadol.info/archive/tramadol-hydrochloride-32.html>tramadol hydrochloride 32</a>
<a href=http://howtramadol.info/archive/buy-tramadol-overnight.html>buy tramadol overnight</a>
<a href=http://howtramadol.info/archive/tramadol-cause-sleepiness.html>tramadol cause sleepiness</a>
<a href=http://howtramadol.info/archive/buying-ultram-online-tramadol-total.html>buying ultram online tramadol total</a>
<a href=http://howtramadol.info/archive/buy-300-tramadol-cod.html>buy 300 tramadol cod</a>
<a href=http://howtramadol.info/archive/tramadol-overnight-cash-on-delivery.html>tramadol overnight cash on delivery</a>
<a href=http://howtramadol.info/archive/tramadol-hydrochloride-xl.html>tramadol hydrochloride xl</a>
<a href=http://howtramadol.info/archive/tramadol-in-system.html>tramadol in system</a>
<a href=http://howtramadol.info/archive/coupon-code-for-usaovernight-meds-tramadol.html>coupon code for usaovernight meds tramadol</a>
<a href=http://howtramadol.info/archive/buy-dream-online-pharmaceutical-tramadol.html>buy dream online pharmaceutical tramadol</a>
<a href=http://howtramadol.info/archive/tramodol-tramadol-180-tablets.html>tramodol tramadol 180 tablets</a>
<a href=http://howtramadol.info/archive/tramadol-versus-lortab-for-pain.html>tramadol versus lortab for pain</a>
<a href=http://howtramadol.info/archive/tramadol-gov.html>tramadol gov</a>
<a href=http://howtramadol.info/archive/zoloft-tramadol-interactions.html>zoloft tramadol interactions</a>
<a href=http://howtramadol.info/archive/tramadol-sr.html>tramadol sr</a>
<a href=http://howtramadol.info/archive/tramadol-saturday-delivery-cod.html>tramadol saturday delivery cod</a>
<a href=http://howtramadol.info/archive/dmso-tramadol.html>dmso tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-no-prescription.html>tramadol no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-efficasy.html>tramadol efficasy</a>
<a href=http://howtramadol.info/archive/paroxetine-hydrochloride-tramadol.html>paroxetine hydrochloride tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-and-overnight.html>tramadol and overnight</a>
<a href=http://howtramadol.info/archive/addiction-to-tramadol.html>addiction to tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-online-purchase.html>tramadol online purchase</a>
<a href=http://howtramadol.info/archive/cardinal-health-tramadol-on-line.html>cardinal health tramadol on line</a>
<a href=http://howtramadol.info/archive/tramadol-dosing-in-dogs.html>tramadol dosing in dogs</a>
<a href=http://howtramadol.info/archive/tramadol-blood-test-intrfere.html>tramadol blood test intrfere</a>
<a href=http://howtramadol.info/archive/adjustable-bed-tramadol.html>adjustable bed tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-cod-order-tramadol.html>tramadol cod order tramadol</a>
<a href=http://howtramadol.info/archive/withdrawal-from-tramadol-in-canines.html>withdrawal from tramadol in canines</a>
<a href=http://howtramadol.info/archive/what-does-tramadol-do.html>what does tramadol do</a>
<a href=http://howtramadol.info/archive/board-online-prescription-tramadol.html>board online prescription tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-overseas-best-price.html>tramadol overseas best price</a>
<a href=http://howtramadol.info/archive/buy-generic-tramadol-no-prescription.html>buy generic tramadol no prescription</a>
<a href=http://howtramadol.info/archive/breaking-addiction-of-tramadol.html>breaking addiction of tramadol</a>
<a href=http://howtramadol.info/archive/blood-drug-test-tramadol.html>blood drug test tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-nonformulary.html>tramadol nonformulary</a>
<a href=http://howtramadol.info/archive/tramadol-picture.html>tramadol picture</a>
<a href=http://howtramadol.info/archive/forex-trading-a3-acbuy-tramadol.html>forex trading a3 acbuy tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-prescriptions-priority-overnight.html>tramadol prescriptions priority overnight</a>
<a href=http://howtramadol.info/archive/tramadol-120-pills-sunday.html>tramadol 120 pills sunday</a>
<a href=http://howtramadol.info/archive/clorhidrato-de-tramadol.html>clorhidrato de tramadol</a>
<a href=http://howtramadol.info/archive/what-is-ingredients-in-tramadol.html>what is ingredients in tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-120ct.html>tramadol 120ct</a>
<a href=http://howtramadol.info/archive/va-mortgage-loan-rate-tramadol.html>va mortgage loan rate tramadol</a>
<a href=http://howtramadol.info/archive/effects-tramadol.html>effects tramadol</a>
<a href=http://howtramadol.info/archive/klonopin-interaction-with-tramadol.html>klonopin interaction with tramadol</a>
<a href=http://howtramadol.info/archive/50mg-tramadol-120.html>50mg tramadol 120</a>
<a href=http://howtramadol.info/archive/acetaminophen-tramadol-hcl.html>acetaminophen tramadol hcl</a>
<a href=http://howtramadol.info/archive/tramadol-or-ultram-or-tramal-withdr.html>tramadol or ultram or tramal withdr</a>
<a href=http://howtramadol.info/archive/tramadol-and-hydrocodone-drug-interactions.html>tramadol and hydrocodone drug interactions</a>
<a href=http://howtramadol.info/archive/online-tramadol-dreampharmaceuticalscom.html>online tramadol dreampharmaceuticalscom</a>
<a href=http://howtramadol.info/archive/tramadol-product.html>tramadol product</a>
<a href=http://howtramadol.info/archive/order-tramadol.html>order tramadol</a>
<a href=http://howtramadol.info/archive/internet-online-pharmacy-pharmacy-prilosec-tramadol.html>internet online pharmacy pharmacy prilosec tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-p111.html>tramadol p111</a>
<a href=http://howtramadol.info/archive/100-mg-tramadol-800ct.html>100 mg tramadol 800ct</a>
<a href=http://howtramadol.info/archive/tramadol-lexapro-addiction-story.html>tramadol lexapro addiction story</a>
<a href=http://howtramadol.info/archive/animal-tramadol-dosage-chart.html>animal tramadol dosage chart</a>
<a href=http://howtramadol.info/archive/tramadol-hexal.html>tramadol hexal</a>
<a href=http://howtramadol.info/archive/tramadol-dog.html>tramadol dog</a>
<a href=http://howtramadol.info/archive/tramadol-and-flexeril.html>tramadol and flexeril</a>
<a href=http://howtramadol.info/archive/200mr-tramadol.html>200mr tramadol</a>
<a href=http://howtramadol.info/archive/does-tramadol-help-depression.html>does tramadol help depression</a>
<a href=http://howtramadol.info/archive/cat-health-buy-tramadol.html>cat health buy tramadol</a>
<a href=http://howtramadol.info/archive/imitrex-tramadol.html>imitrex tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dog-no-prescription.html>tramadol dog no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-and-shakiness.html>tramadol and shakiness</a>
<a href=http://howtramadol.info/archive/pharmacology-of-tramadol.html>pharmacology of tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-prozac.html>tramadol prozac</a>
<a href=http://howtramadol.info/archive/tramadol-for-pigs.html>tramadol for pigs</a>
<a href=http://howtramadol.info/archive/overnight-tramadol-no-rx.html>overnight tramadol no rx</a>
<a href=http://howtramadol.info/archive/tramadol-and-vision-problems.html>tramadol and vision problems</a>
<a href=http://howtramadol.info/archive/detox-ultram-tramadol.html>detox ultram tramadol</a>
<a href=http://howtramadol.info/archive/filing-income-tax-buy-tramadol.html>filing income tax buy tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-dogs-dose.html>tramadol dogs dose</a>
<a href=http://howtramadol.info/archive/cheap-discount-tramadol-120ct.html>cheap discount tramadol 120ct</a>
<a href=http://howtramadol.info/archive/tramadol-bupropion.html>tramadol bupropion</a>
<a href=http://howtramadol.info/archive/express-delivery-tramadol-no-prescription.html>express delivery tramadol no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-w-acetaminophen.html>tramadol hcl w acetaminophen</a>
<a href=http://howtramadol.info/archive/cod-tramadol.html>cod tramadol</a>
<a href=http://howtramadol.info/archive/kaiser-permanente-and-tramadol.html>kaiser permanente and tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-cheap-order-before-3pm.html>tramadol cheap order before 3pm</a>
<a href=http://howtramadol.info/archive/tramadol-rx-online.html>tramadol rx online</a>
<a href=http://howtramadol.info/archive/tramadol-herbal-supplement-interactions.html>tramadol herbal supplement interactions</a>
<a href=http://howtramadol.info/archive/120-cod-tramadol.html>120 cod tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-best-buy-tremadol.html>tramadol best buy tremadol</a>
<a href=http://howtramadol.info/archive/tramadol-opiate-drug-testing.html>tramadol opiate drug testing</a>
<a href=http://howtramadol.info/archive/tramadol-180-cheap.html>tramadol 180 cheap</a>
<a href=http://howtramadol.info/archive/tramadol-dytox.html>tramadol dytox</a>
<a href=http://howtramadol.info/archive/about-tramadol.html>about tramadol</a>
<a href=http://howtramadol.info/archive/long-acting-tramadol.html>long acting tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-side-effects-in-dogs.html>tramadol side effects in dogs</a>
<a href=http://howtramadol.info/archive/tramadol-pharmacy-tech-buy-tramadol.html>tramadol pharmacy tech buy tramadol</a>
<a href=http://howtramadol.info/archive/taking-tramadol-while-breast-feeding.html>taking tramadol while breast feeding</a>
<a href=http://howtramadol.info/archive/tramadol-drug-interaction.html>tramadol drug interaction</a>
<a href=http://howtramadol.info/archive/increases-tramadol-effiecy.html>increases tramadol effiecy</a>
<a href=http://howtramadol.info/archive/seizures-from-tramadol.html>seizures from tramadol</a>
<a href=http://howtramadol.info/archive/cheapest-prescription-tramadol.html>cheapest prescription tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-buzz-andnot-pharmacy.html>tramadol buzz andnot pharmacy</a>
<a href=http://howtramadol.info/archive/prepare-tramadol-for-injection-erowid.html>prepare tramadol for injection erowid</a>
<a href=http://howtramadol.info/archive/tramadol-generic.html>tramadol generic</a>
<a href=http://howtramadol.info/archive/tachycardia-tramadol.html>tachycardia tramadol</a>
<a href=http://howtramadol.info/archive/bupropion-tramadol-interactions.html>bupropion tramadol interactions</a>
<a href=http://howtramadol.info/archive/tramadol-withdrawal-syndrome.html>tramadol withdrawal syndrome</a>
<a href=http://howtramadol.info/archive/tramadol-image.html>tramadol image</a>
<a href=http://howtramadol.info/archive/diflucan-tramadol.html>diflucan tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-canine-treatment.html>tramadol canine treatment</a>
<a href=http://howtramadol.info/archive/tramadol-sale-100-mg.html>tramadol sale 100 mg</a>
<a href=http://howtramadol.info/archive/tramadol-treats-withdrawal-symptoms.html>tramadol treats withdrawal symptoms</a>
<a href=http://howtramadol.info/archive/online-tramadol-free-shipping.html>online tramadol free shipping</a>
<a href=http://howtramadol.info/archive/long-term-effects-taking-altram-tramadol.html>long term effects taking altram tramadol</a>
<a href=http://howtramadol.info/archive/why-is-tramadol-considered-addictive.html>why is tramadol considered addictive</a>
<a href=http://howtramadol.info/archive/cod-tramadol-200.html>cod tramadol 200</a>
<a href=http://howtramadol.info/archive/tramadol-apap-37-5.html>tramadol apap 37 5</a>
<a href=http://howtramadol.info/archive/order-pharmacy-tramadol.html>order pharmacy tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-acepaminophen-par.html>tramadol hcl acepaminophen par</a>
<a href=http://howtramadol.info/archive/hydrocodone-tramadol-taken-together.html>hydrocodone tramadol taken together</a>
<a href=http://howtramadol.info/archive/tramadol-internet-buy-hormone-leptin.html>tramadol internet buy hormone leptin</a>
<a href=http://howtramadol.info/archive/tramadol-delivery-saturday.html>tramadol delivery saturday</a>
<a href=http://howtramadol.info/archive/prescription-tramadol-discriptions.html>prescription tramadol discriptions</a>
<a href=http://howtramadol.info/archive/888-557-1872-tramadol-cod.html>888 557 1872 tramadol cod</a>
<a href=http://howtramadol.info/archive/international-tramadol-no-prescription.html>international tramadol no prescription</a>
<a href=http://howtramadol.info/archive/tramadol-prescription-to-florida.html>tramadol prescription to florida</a>
<a href=http://howtramadol.info/archive/mg-xanax-buy-tramadol-now.html>mg xanax buy tramadol now</a>
<a href=http://howtramadol.info/archive/tramadol-drug-information.html>tramadol drug information</a>
<a href=http://howtramadol.info/archive/canadian-tramadol.html>canadian tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-hcl-dogs.html>tramadol hcl dogs</a>
<a href=http://howtramadol.info/archive/teenage-tramadol-abuse.html>teenage tramadol abuse</a>
<a href=http://howtramadol.info/archive/most-cheapest-tramadol.html>most cheapest tramadol</a>
<a href=http://howtramadol.info/archive/cheap-prescription-tramadol-without.html>cheap prescription tramadol without</a>
<a href=http://howtramadol.info/archive/compare-prices-tramadol.html>compare prices tramadol</a>
<a href=http://howtramadol.info/archive/as-carisoprodol-get-pain-tramadol.html>as carisoprodol get pain tramadol</a>
<a href=http://howtramadol.info/archive/tramadol-2.html>tramadol 2</a>
<a href=http://howtramadol.info/archive/increases-tramadols.html>increases tramadols</a>
<a href=http://howtramadol.info/archive/tramadol-online-span.html>tramadol online span</a>
<a href=http://howtramadol.info/archive/tramadol-sid.html>tramadol sid</a>
<a href=http://howtramadol.info/archive/tramadol-images.html>tramadol images</a>
<a href=http://howtramadol.info/archive/potentiate-tramadol-drug-forums.html>potentiate tramadol drug forums</a>
<a href=http://howtramadol.info/archive/career-in-finance-buy-tramadol.html>career in finance buy tramadol</a>

Latest revision as of 17:45, 15 September 2021

Subtle bug in the C example?

Carefully reading the strtol() man page on my Linux box I see that the entire resulting string was converted to a long if (and only if) *endptr (p in the example) is '\0' (an ASCII NUL) and if the *nptr (s in the example) was NOT '\0'. In other words I think the example should test for a precondition to return false if it's called with an empty string as the argument. If I were more confident in my C coding skills and my understanding of this particular function (and of the conformance of Linux to any relevant standards) I would insert a line like: if *s == '\0' return !*s;

Am I mistaken?

JimD 16:16, 11 October 2007 (MDT)

I think you are right: if you pass a void string, it returns true ... But it could be interpreted like: a void string can rapresent anything... :D I rather would add

<c>if ( s==NULL ) return 0; if ( *s == 0 ) return 0;</c>

This checks also for NULL pointer passed (odd!). --ShinTakezou 22:52, 11 December 2008 (UTC)
I've fixed the example (with a slightly more compact if :-)). BTW, there's no void string, only an empty string (well, one could call the null pointer a void string :-)). --Ce 14:12, 12 December 2008 (UTC)
Semanthic. Void means void (i.e., so to say, a container without contents); the same as empty. (Maybe I feel it since I am italian, so the fact that C uses the term its way does not let me think I can't use it as normally I would, to say empty. By empty C string, I mean a pointer to a byte which is '\0'. (void Webster definition)

Unix shell

#!/bin/sh

a='123'
if [ "$a" -eq "$a" ] 2>/dev/null
then
    echo "a is numeric"
else
    echo "a is abnumeric"
fi

Exact definition of IsNumeric?

For those who don't know VB: How exactly is IsNumeric defined? For example: Is leading/trailing whitespace allowed (i.e. " 123" or "123 ")? Does it also accept floating point values (e.g. "2.5" or "1e5")? What about thousands separators (e.g. "10,000")? Is that locale-dependent? Are numbers in other bases (e.g. hexadecimal) allowed (assuming VB supports them otherwise)? What about numbers too big to fit into a native integer (e.g. "9999999999999999999999999999999999999999999999999") resp. a native float (e.g. "1e1234567")?

And what is its input? The Python and C samples take a string. The Ruby and Scheme samples take an object. And in Tcl it's the same thing.
Half the samples shown implement 'is integer', or 'is numeric character'.
In VB, IsNumeric is a function for validating input. VB examples (all true)
1, 1.1, -1.1, "1", "1.1", "-1.1" "1.1-", " 1.1- ", " 1,1 ", " 1E1" "&HFF"
VBscript:
msgbox isnumeric(1)
msgbox isnumeric(1.1)
msgbox isnumeric(-1.1)
msgbox isnumeric("1")
msgbox isnumeric( "1.1")
msgbox isnumeric( "-1.1")
msgbox isnumeric( " 1.1- ")
msgbox isnumeric(" 1,1 ")
msgbox isnumeric(" 1E1 ")
msgbox isnumeric(" &HFF ")

I hadn't realized that there was an ambiguity. I hadn't even realized that "isnumeric" is a VB function (I certainly don'ty know VB). In the two examples I contributed (IDL and TCL) I assumed that the task meant that something would be interpreted as a number if handed to the language in question. I.e. if I can multiply it with two or take the sin() of it then it is numeric. For example in IDL I might say "sin(double(x))" where "double(x)" converts the input into a "double" (8-byte float) which will fail if "x" is, for example, the string "foo". I trap the error and decide what is or isn't "numeric" based on the occurrence of this kind of error. This will allow "1.1" or "-.1e-04" or "+000003" etc.
Should we tag the task for clarification? Sgeier 10:34, 20 September 2007 (MDT)
I think we need clarification of what is classed as a numeric string. Are commas allowed in the string? Must they be in certain places? What about strings containing numbers represented using underscore annotation? Or numbers in a notation that represents a non-decimal base?

Which of the following example strings are classed as numeric for the purpose of this task?

  • "20,376"
  • "20367"
  • "20 368"
  • "203 69"
  • "20_367"
  • "203_76"
  • "0x1234" - Hexadecimal
  • "0xFFFF" - Hexadecimal
  • "0xFFGF" - Is this invalid hexidecimal?
  • "01677" - This could be an octal number
  • "01678" - This could be an invalid octal number
  • "0b10101000" - Could be a binary number
  • "0b10102010" - This is probably an invalid binary number
  • "10101000b" - This is a binary number in an alternative notation
  • "10101020b" - This is an invalid binary number
  • "1677o" - This is an octal number in an alternative notation
  • "1678o" - This is an invalid octal number in an alternative notation
  • "1234h" - Hexadecimal alternative notation
  • "FFFFh" - Hexadecimal alternative notation
  • "FFFGh" - This is not a valid hexadecimal number
  • "+27" - The positive number 27
  • "3+2" - This is an expression

--Markhobley 16:28, 4 June 2011 (UTC)

Whatever would be a legal numeric literal accepted by the language compiler/interpreter - thus making it language specific? --Paddy3118 20:10, 4 June 2011 (UTC)
I'm not sure. In theory, the application program could support the various numeric formats, even though the underlying language may not. --Markhobley 21:38, 4 June 2011 (UTC)

I think we can say that expressions and the invalid numbers are not numeric strings, but this then means we need sufficient logic in the code to be able to identify these as such.

In the past, I have assumed that the number system was decimal and accepted only digits, an optional leading hyphen, and a single decimal point. With that logic, "a numeric string is a string consisting only of digits, an optional leading hyphen and an optional single decimal point". Maybe this is the way to go. Note that in some locales, numeric strings fall outside of this definition, so this also needs to be considered. Under that definition strings containing whitespace return a result of "not numeric", but this does not matter in practice, because code that makes use of the result can easily trim whitespace from the string before feeding it to the evaluator (I have done this before and it has worked well for me). --Markhobley 21:38, 4 June 2011 (UTC)

If a leading hyphen (minus sign) is OK, why not a leading plus sign as well (but not both, of course)?   "A leading hyphen" was mentioned, but I assume you meant a single leading hyphen (minus sign).   However, some languages allow multiple leading signs. -- Gerard Schildberger (talk) 17:57, 28 September 2013 (UTC)

Objective-C question

An anonymous user had posted a question about the Objective-C example. I'll try to translate.

"How to check the whole string to make sure it is numeric?" was the original question. I think they were looking for a character by character check? Maybe a regex? What do you Ob-C people think? --Mwn3d 21:46, 11 December 2008 (UTC)

As it was before, the code say the "123Not Numeric" is numeric... I made it so that it says it is numeric iff the whole string is a number. (By the way, this one says numeric for float, other implementation here would say that "123.3" is not numeric since they check for integer only...) --ShinTakezou 23:12, 11 December 2008 (UTC)

How literally need the examples follow the task?

The task description says »A number in the syntax the language uses for literals« and that floating-point numbers should be included. First off, this probable invalidates any solution that uses the language's normal string-to-number routines since those usually are locale-aware. A string like 1.234.567,141 will convert fine on my system (using de-DE as locale but wouldn't be a valid numeric literal in the programming languages I know.

Furthermore – similar to the VB discussion above – many programming languages allow floating point numbers to be in the form 1.23e15 which is currently handled by very few, if any, examples. In a similar vein, hexadecimal, octal or binary numeric literals – in C and languages that follow its conventions closely, 09 would not be a valid numeric literal. —Johannes Rössel 17:56, 6 July 2010 (UTC)

I would stick to the numeric literals that you could write in your source and get accepted as a number. If your compiler or interpreter doesn't accept locale-aware things like extra dots or commas then I'd say you were fine, (but what do I know).
I guess examples should note if there are types of numeric literals of their language that the routines don't accept, but I think that some examples were written to implement something seen in other examples rather than with an idea to cover all the numeric literal forms the language allows. --Paddy3118 02:44, 7 July 2010 (UTC)

Mathematica seems lean?

It just seems to me that Mathematica should have ways to recognize many more number types than the current entry seems to suggest. compare the E, Forth and Python entries. --Paddy3118 14:54, 26 August 2010 (UTC)

Second MATLAB solution might have a problem

I don't know if you want to call it "incorrect", but I think the second MATLAB solution would call "...." numeric. I don't see any way of determining that there is only one decimal point in the string. --Mwn3d 15:59, 2 February 2012 (UTC)

Problem with the VB.net example

The IsNumeric call will not always return a correct answer. Try "1234+" - IsNumeric will return True. Then pass this same value as an argument to Convert.ToDouble: it will fail "unhandled exception". There's no option but to loop thru the String character by character and check that each one is within range. --LazyZee 17:59, 19 October 2012 (UTC)

R

The solution will not work correctly if the string contains "NA" (not a number). But NA can be used in numeric calculations. --Sigbert (talk) 13:01, 16 February 2015 (UTC)

AWK code is wrong

awk 'BEGIN { x = "01"; print x == x+0 }'
0
awk 'BEGIN { x = "+1"; print x == x+0 }'
0
awk 'BEGIN { x = "1x"; print x == x+0 }'
0

But

awk 'BEGIN { x = "1x"; print x+1 }'
2

Assembly implementation is harder than I thought

The way I see it, the code will need to do the following:

Read the first character.

  • If it's a null terminator, the program ends and the string is not numeric.
  • If it's a minus sign, that's valid and so we can continue
  • If it's a decimal point, that's valid and we can continue. However, the presence of a decimal point must be recorded. If the string contains a second decimal point it stops being numeric.
  • If it's not a number, at this point the string is not numeric. Otherwise continue.

Read the second character.

  • If it's the terminator, the string is numeric if the first character was a numeral. If the first character was a minus sign or decimal point, the string is not numeric.
  • If the second character is a numeral, continue.
  • If the second character is a decimal point, continue if we haven't seen one already. If there is more than one decimal point the string is not numeric.
  • If the second character is anything else, the string is not numeric.

Loop through the rest of the string.

  • If we encounter the terminator, the string is numeric.
  • If we encounter a numeral, continue.
  • If we encounter a second decimal point, the string is not numeric.
  • If we encounter anything besides a numeral, the null terminator, or the first occurrence of a decimal point, the string is not numeric.

I've attempted this in both 8086 and z80 but it ends up looking like spaghetti no matter what I do.

@User: Puppydrum64: Uhm, is this task even applicable for assembly? I don’t thinks so. You know, depending on the assembler used there are several ways to write numeric literals. In NASM, for instance, I can write 0b0110_1101. There simply isn’t a/the programming language “8086 assembly” defining how to write numeric literals. What you are attempting to do, though, is rather writing an assembly function that accepts a null-terminated string that represents a valid numeric literal in C (and many other programming languages), but not “8086 assembly”, you know what I mean? Root (talk) 18:10, 20 August 2021 (UTC)

I get what you mean. I figured at least attempting something that represents a valid numeric literal in higher-level languages was as close as I could get. Throwing in the towel and just saying "This is assembly, there are no rules" would disqualify it from almost everything. --Puppydrum64 (talk) 17:45, 15 September 2021 (UTC)