-2
votes
1answer
29 views

Validate entering input field value should start with http://www.something.com [closed]

If somebody entering an input field, it should start with "http://www.something.com/". After ".com/" can type any extension. That is http://www.something.com/ is must. Anybody help this out?
2
votes
1answer
63 views

How to determine if any fields associated with an activity have had their errors set?

I am performing some input validation in an onClickListener(). While I'm okay with my validation methods I'm concerned about the way I am determining if any of the validated inputs have errors. For ...
5
votes
3answers
222 views

validation form in table mode with javascript

i made my form in table mode like this: <form name="register" method="post" action="#" onSubmit="return validasi()"> <table width="507" border="0"> <h1 ...
0
votes
1answer
68 views

how can I correct this JavaScript adding function?

I have a form which takes six inputs (there are more but only these matter for now) original fare original tax new fare new tax fee number of guests when "Calculate" is pressed I use ...
0
votes
2answers
46 views

How to handle user input that is too long?

It is common to check if entered password is at least # characters long, or if user input is not left empty. However, I see a few websites testing if user input is not unusually long. Typical ...
3
votes
5answers
186 views

Input validation in C

I'm writing a program in C. In the program, the user has to choose a number, either 1, 2 or 3. I would like to construct the code so that when the user enters in a number that isn't 1, 2 or 3, he/she ...
0
votes
1answer
187 views

How to restrict input in a JTable?

I am using in my program an editable JTable. My question is: How would you restrict the input that is written in the table?
0
votes
2answers
95 views

Validate input based on radio input

Is there a way to validate a field text input based on radio button selection? I'm trying to validate a user's input into a Title field, based on the radio selection of whether the identity is male or ...
0
votes
1answer
134 views

Combining InputVerifiers

Does the Swing API have classes which combine InputVerifiers? For example, I have three InputVerifiers in my current project: NotEmptyInputVerifier - verifies that a textfield is not empty ...
0
votes
0answers
48 views

User input is santized, but should it be validated?

The Disclaimer I have trawled several Questions/Answers from here as well as other sites, but can't seem to come to a straight answer or general best practice from both a security point of view and a ...
-4
votes
2answers
239 views

How do I make a function that validates user input in C? [closed]

I need to write a function for my 1st semester c assignment. If anyone could help me I've written all of the assignment i just need to validate user input. This is what the teacher gave me... if this ...
4
votes
4answers
995 views

PHP: Best way to check if input is a valid number?

What is the best way of checking if input is numeric? 1- +111+ 5xf 0xf Those kind of numbers should not be valid. Only numbers like: 123, 012 (12), positive numbers should be valid. This is mye ...
0
votes
2answers
68 views

validation for the “version” field in a table

I have an input field named "VERSION" in a form where I have to write the version of the document. e.g. Version : 10.1.2.3 How to validation for this input field in javascript?
2
votes
2answers
422 views

Python Input validation

I have a menu that will return 'e' unless the input is d or D. I would like to do it without making another variable and doing it on one line encrypt = 'd' if (raw_input("Encrypt or Decrypt a ...
-1
votes
5answers
370 views

getchar() doesn't actually take input from user

I am writing a flexible command-line (but not for long!) diamond-square generator in C++. I have just finished writing the user input half. However, on the very last command, input "slips" and a ...
2
votes
3answers
1k views

Prevent Leading Whitespace with RegEx

I'm trying to restrict review posting text with (at the present) the following RegEx: ^([a-zA-Z0-9 _\.\'\"\(\)\!\?\&\@]){1,}$ However, the text itself needs to contain whitespace in the form ...
1
vote
5answers
2k views

PHP Regex - Value of 1 or more integers [duplicate]

Hey I'm trying to perform input validation in PHP to ensure that the stock values that are typed in are at least 1 positive integer and from 0-9. Should not contain any special characters. For ...
0
votes
3answers
5k views

How to convert textbox.text into int or what to use for int only input instead?

How do I convert a TextBox to int or is there a box inside WPF that supports only numbers?
3
votes
2answers
35k views

set value of input using JS function

I'm currently using a YUI gadget,I also do have a JS function to validate the output that comes from the Div that YUI drows for me: Event.on("addGadgetUrl", "click", function(){ /* line x ...
0
votes
2answers
174 views

adding Form Validation Javascript of jquery?

How can I add inline Validation to make sure a choice of radio input must be selected <script type="text/javascript"> function choosePage() { ...
0
votes
1answer
291 views

Easy way to see if an input is an integer?

Is there a simple way to see if an input is an integer in Java?
5
votes
1answer
575 views

Is there a Java implementation of the HTML5 input email validation?

I'd like to use the new <input type="email" /> element. I'd like to have Java code that implements the same validation on the server that happens in the browser. The HTML5 spec defines email ...
4
votes
4answers
2k views

Matlab - input validation

What is a good way to validate an input or exit the program with an error message altoghether? For example if I take an input such as Length = input('\nEnter a length in feet: '); How can I check ...
0
votes
1answer
81 views

Rich text and parameterized queries, should I be worried?

For this particular project I will be using PHP 5.3 & MySQL with parameterized queries and CKE Editor. A little background on what my situation is: The users on the site don't interact with each ...
0
votes
2answers
145 views

Architecture: Where to sanitise uploaded file names?

I'm trying to change the way we handle uploaded files before storing them to disk. We have had some problems when users from non-windows operative systems upload files with characters that are illegal ...
2
votes
2answers
2k views

javascript validation on text boxes created dynamically

In a form a text box is created dynamically by clicking on add button such that the text box is created in a new row.Now my problem is the validation of text boxes which were created dynamically such ...
1
vote
1answer
350 views

Input validation in WPF

i am developing an application in wpf using MVVM design pattern. i have a listbox when an item is slected then a dialog is open having the same record in editable mode. this dialog is binded with the ...
2
votes
1answer
388 views

C++ CIN cin skips randomly

I have this program, but cin in randomly skips.. I mean sometimes it does, and sometimes it doesn't. Any ideas how to fix this? int main(){ /** get course name, number of students, and ...
0
votes
3answers
1k views

Problem using rangelength for jQuery validation

I'm using the jQuery Validator Plugin. My code is like this: <input name="username" type="text" class="newtextbox required" rangelength="(4,16)"> The error message is "Please enter a value ...
-1
votes
1answer
478 views

How to filter out all non-word characters from user input in Java

I'm trying to filter out all possibilities of XSS from user name input while still allowing for foreign names to be inputted. What is the best way to white-list all word-characters in multiple ...