The isnumeric tag has no wiki summary.
1
vote
2answers
26 views
jquery hide extra dropdowns in a table
I have several tables on a page with the possibility of multiple dropdowns in each table. The table and the dropdowns are autogenerated. The tables I want to target have numeric ids and all of the ...
1
vote
2answers
34 views
IsNumeric() not working with Request.QueryString
I'm having problems trying to get IsNumeric to work properly with Request.QueryString.
The server is Windows 2008 R2 / IIS7.5
My code could not be any simpler:
<%@ LANGUAGE=VBScript %>
...
1
vote
3answers
72 views
PHP form validation where value is not null
When attempting to validate a field, it doesn't seem to work. I need to only perform !is_numeric when $postcode is not null. I do have client side validation, but I want to ensure that I have server ...
0
votes
0answers
82 views
Form validation not working with 'isNumeric'
I'm using the following code to do validation on a small form (which is part of a larger sign-up process) and while my checks to make sure the fields are filled in work fine, I can't get isNumeric to ...
36
votes
7answers
964 views
An improved isNumeric() function?
During some projects I have needed to validate some data and be as certain as possible that it is javascript numerical value that can be used in mathematical operations.
jQuery, and some other ...
0
votes
4answers
94 views
PHP: how to force property of method to be integer?
My current way:
class A {
public function function_b($myint) {
if (!is_numeric($myint)) return false;
// code ...
}
}
I would like to abandon the function is_numeric() like ...
0
votes
4answers
135 views
Check $_POST['id'] is numeric then do this if not do otherwise
Hello I seemed to be failing my code:
if (!empty($_POST['id'])) {
echo "empty";
} else {
if (is_numeric($_POST['id'])) {
echo "numeric!";
} else {
echo "not empty but not numeric ...
1
vote
4answers
285 views
Get null if non numeric or the actual numeric value in TSQL
I'm trying to get the numeric value of a string if isnumeric() function returns 1 or NULL if it returns 0. But I only get if it's numeric I get 1 or null if non numeric.
Is it possible to return the ...
2
votes
3answers
967 views
How to check isNumeric/IsNumber in JSTL
how to do this simple check in JSTL(without extending any java classes and additional JSP functions). I need it like this:
<c:if test="${fn:isNumeric()}">
... do something ...
</c:if>
...
1
vote
5answers
74 views
changing a word in a string?
I have this assignment:
Write a function smallnr(x) that takes a number x and if x is an
integer between 0 and 6 it returns the name of the number,
otherwise it simply returns x as a string.
...
0
votes
2answers
144 views
Validating Textboxs
I am doing a simple aplication using Windows Forms and I have a question...
My form has 15 textboxs and I want to validate everyone using the event KeyPress or validating. I have this code that is ...
0
votes
1answer
560 views
IsNumeric function not working correctly
I have very strange problem with IsNumeric function in classic asp fail. Something like this happens in my code:
Response.write Score // 79.617
Response.write IsNumeric(Score) // ...
2
votes
1answer
176 views
IsNumeric equivalent in Linq
I need to use a function in Linq that equivalent to IsNumeric function in SQL. What I am trying to do is get codes that matches a common pattern. The codes should be unique and they are generated by ...
0
votes
1answer
98 views
Improve performance using IsNumeric function in loop which is exeecute 1 to 1 caror or more in VB.net
I have one function which is written in VB.net, Code is look like below.
For rowIndex As Integer = 0 To nRows - 1
Dim max As Integer = -1
Dim arrTemp() As String
arrTemp = ...
1
vote
2answers
623 views
Classic ASP IsNumeric weirdness?
Just ran into a rather strange bit of functionality with the baked in IsNumeric function is classic ASP.
I had a JSONArray class that prints out its contents to a string - it was using IsNumeric to ...
2
votes
2answers
469 views
Varchar to Numeric conversion - CLR or 'e0'
I want to convert data from Varchar column to Numeric data type -
so before conversion I am calling ISNUMERIC function to check whether data is numeric and if yes convert it to numeric data type. But ...
0
votes
2answers
74 views
is_numeric($str) for database queries
Basically my question is, if I have a number string, and i'm going to compare it to the database, is that a secure/safe way to check. Or should I just escape my number variables aswell as my strings ...
2
votes
3answers
10k views
T-sql - determine if value is integer
I want to determine if a value is integer (like TryParse in .NET). Unfortunatelly ISNUMERIC does not fit me because I want to parse only integers and not every kind of number. Is there such thing as ...
0
votes
7answers
405 views
Difficulty checking if elements in array are type integer PHP
I am trying to detect if one or more variables contain numbers. I have tried a few different methods, but I have not been entirely successful. Here is what I have tried.
<?php
$one = '1';
$two = ...
0
votes
3answers
2k views
Safe casting VARCHAR to DECIMAL in Teradata
In Teradata DB I have source table
create set table SRC_TABLE (
Some_Id varchar(2O) not null
);
This table is loaded with data from external system. I have target table
create set table ...
0
votes
2answers
93 views
jQuery - Setting .blur to a class
I'm trying to set a blur on all 'number' classes (which happen to be tags).
My trial coding is;
$('.number').blur(function () {
if ($.isNumeric($(this).val) == false) alert('false ' + ...
2
votes
4answers
81 views
unable to determine if a string is currently an integer or not
The following funciton drove me nuts. How on earth 100x could be equal to 100 and then 100x is reported as an integer?
For the life of me, I cannot figure it out.
You can copy and paste the whole ...
2
votes
1answer
411 views
Query using a derived table with ISNUMERIC results in conversion failure (varchar to int)
Here's an example query:
DECLARE @table table (loc varchar(10))
INSERT INTO @table VALUES
('134a'), ('123'), ('abc'), ('124')
SELECT *
FROM (
SELECT * FROM @table WHERE ISNUMERIC(loc) = 1
) as ...
1
vote
3answers
915 views
Arithmetic overflow error converting varchar to data type numeric
First, let me state I have read various similar posts and haven't been able to identify the similarities between the problem that other posters have had with this error message and the situation I've ...
0
votes
3answers
393 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)
...
3
votes
2answers
348 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
7answers
8k 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 ...
5
votes
2answers
421 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 ...
0
votes
3answers
4k 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
415 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 ...
1
vote
1answer
2k 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, ...
7
votes
5answers
796 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 ...
1
vote
1answer
1k 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 ...
2
votes
6answers
507 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
552 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 ...
0
votes
3answers
2k 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 ...
9
votes
6answers
11k 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
536 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 ...
1
vote
4answers
267 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 ...
4
votes
4answers
2k 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 ...
0
votes
5answers
3k 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
533 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, ...
38
votes
14answers
46k views
How to identify if a string is a number?
if I have these strings:
"abc" = false
"123" = true
"ab2" = false
Is there any command like IsNumeric or something else that can identify if a string is a valid number?
1
vote
4answers
962 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 ...
0
votes
1answer
769 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:
...
2
votes
4answers
2k 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
6k 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 ...
31
votes
11answers
48k 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
9k 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 ...

