Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
11answers
15k views

How do you test your Request.QueryString[] variables?

I frequently make use of Request.QueryString[] variables. In my Page_load I often do things like: int id = -1; if (Request.QueryString["id"] != null) { try { ...
12
votes
10answers
5k views

Efficient ISNUMERIC() replacements on SQL Server?

So I just spent 5 hours troubleshooting a problem which turned out to be due not only to the old unreliable ISNUMERIC but it looks like my problem only appears when the UDF in which ISNUMERIC is ...
10
votes
11answers
18k views

How to identify if string contain a number?

if I have this strings: "abc" = false "123" = true "ab2" = false Is there any command like IsNumeric or something else that can identify if string has numbers? thank's in advance
6
votes
5answers
146 views

ISNUMERIC('07213E71') = True?

SQL is detecting that the following string ISNUMERIC: '07213E71' I believe this is because the 'E' is being classed as a mathmatical symbol. However, I need to ensure that only values which are ...
5
votes
1answer
119 views

How to use IsNumeric method in MonoDevelop by using Microsoft.VisualBasic reference?

What I am trying to do is to check whether the float input is a number or not. I am being asked to do so by using IsNumeric() method. The problem is that I am using MonoDevelop and I can't figure out ...
3
votes
2answers
20 views

IsNumeric in SQL Server JOIN

My problem seems to be very simple but I'm stuck here. I have a table which has an "nvarchar" column called "SrcID" and I store both numbers and strings in that. Now, when I try to check for ...
3
votes
6answers
2k views

Most elegant isNumeric() solution for java

I'm porting a small snippet of PHP code to java right now, and I was relying on the function is_numeric($x) to determine if $x is a number or not. There doesn't seem to be an equivalent function in ...
3
votes
4answers
1k views

T-SQL IsNumeric() and Linq-to-SQL

I need to find the highest value from the database that satisfies a certain formatting convention. Specifically, I would like to find the highest value that looks like EU999999 ('9' being any ...
2
votes
7answers
221 views

PHP is_numeric or preg_match 0-9 validation

This isn't a big issue for me (as far as I'm aware), it's more of something that's interested me. But what is the main difference, if any, of using is_numeric over preg_match (or vice versa) to ...
2
votes
6answers
259 views

c++ isalnum endless loop

Greetings! Lets cut the excessive intro this time and get straight to the point. I have a problem in C++ using the isalnum method. the code: int playAgainst = 0; do { cout << "Who do you ...
2
votes
1answer
196 views

IsNumeric does not work in SQL server

Getting very annoyed with this simple query... I need to add an offset to a varchar, if it's a number and do nothing is it is not. For this reason I've created the following function in SQL-server. I ...
2
votes
4answers
263 views

PHP - usage of is_numeric() necessary, or can use comparison signs work for all positive numeric cases?

It seems that simple comparison signs >,>= and their reverse components can evaluate if a certain variable is a number or not. Example $whatami='beast'; ($whatami<0)?echo 'NaN':echo 'is ...
2
votes
4answers
1k views

What is taking IsNumeric() so long in .NET?

Was doing some benchmarking with IsNumeric today and compared it to the following function: Private Function IsNumeric(ByVal str As String) As Boolean If String.IsNullOrEmpty(Str) Then Return ...
2
votes
10answers
4k views

VB6 Can IsNumeric be wrong?

Is it possible to test a string with IsNumeric() and for it to return true, but when you cast that same string to an integer using CInt() and assign it to a variable of type integer that it will give ...
1
vote
1answer
265 views

Wrong result from IsNumeric() in VB.NET

I have a function in VB.NET that loops through values and attempts to convert it to a decimal if IsNumeric is True, Dim Value As String If IsNumeric(Value) = True Then Rate = CType(Value, ...
1
vote
1answer
238 views

Is there a built-in function to test for alpha or numeric data in Informix 7.3?

I have been searching around for a SQL function that tests a value for being alpha or for being numeric. There doesn't seem to be any functions like this for Informix 7.3, but I might have missed ...
1
vote
4answers
148 views

Need help with syntax for test ISNUMERIC in case

I am trying to stop input of negative values to process in any of the ranges, rather if they are negative they should drop down to the end of the 1st case statement as 'Invalid'. This is not working ...
1
vote
4answers
543 views

How do I use JavaScript for number formatting?

I want to use JavaScript to restrict input on a text box to currency number formatting. For example: <input type="text" value="2,500.00" name="rate" /> As given above, the text box should ...
1
vote
1answer
610 views

VBA Code to Count all Columns that are numeric in ListBox containing SQL Query Results

This is in Access 2007. I have tried writing somethig like: Forms!MyForm!TextBox = Count(ISNUMERIC(ISNUMERIC(QueryResult.Reading))) But this returns non-numeric results. I have also tried: ...
0
votes
3answers
40 views

Using 2 functions at the same time to validate form

im trying to put to javascript functions that will validate a form, but cant make it work. This is what i have : <script type="text/javascript" language="JavaScript"> function checkForm(f) ...
0
votes
3answers
83 views

Fastest way to check if a character is a digit?

I am having issues with sqlserver's ISNUMERIC function where it is returning true for ',' I am parsing a postal code and trying to see if the second char (supposed to be a digit) is a 0 or not and ...
0
votes
1answer
109 views

MSSQL Stored Procedure: Compare Parameter with Column if ISNUMERIC

I have following table "Managers" (simplified): ID, int Name, nvarchar(100) In a stored procedure that has one argument ("Search", type nvarchar), I want to select every row where The ID-Column ...
0
votes
3answers
976 views

T-SQL Case statement utilizing substring and isnumeric

I have a T-SQL stored proc that supplies a good amount of data to a grid on a .NET page....so much so that I put choices at the top of the page for "0-9" and each letter in the alphabet so that when ...
0
votes
5answers
1k views

intval or is_numeric? PHP

i am fetching a text from mysql database and i get it by ID in the url: site.php?id=1 and so on What is considered to be most safe to prevent sql injection and stuff. Is this way correct: <?php ...
0
votes
3answers
351 views

Any Reason Why IsNumeric() Fails On A Number?

I currently have this line of code which has been working for the past 6 months: If IsNumeric(txtProductID.Text) Then ...do stuff Else Dim msg As String = "Error!" End If All of the sudden, ...