473,609 Members | 1,868 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Checking for spaces in input validation.

Markus
6,050 Recognized Expert Expert
Making a basic validation script, i hit a snag.

If user was to input say " "(minus quotes), into the textfield and then submit it the length check i have used would return it as true and therefore execute the rest of the code.

Is there a way to compensate for spaces, as to include them in the length?

Or do you have a different idea?

The code:
Expand|Select|Wrap|Line Numbers
  1. function validateInput()
  2. {
  3.  var username = document.sign_up.username
  4.  var password = document.sign_up.password
  5.  var email    = document.sign_up.email
  6.  var secondary_email = document.sign_up.secondary_email
  7.   if(username.length <= 6 || username.value == ""){ //check for length
  8.     alert("Username must be longer than 6 characters!\n\n- mahcuz")
  9.   }
  10.   else if(username.length >= 14){ //check for length
  11.     alert("Username must be shorter than 14 characters!\n\n- mahcuz")
  12.   }
  13.   else{
  14.   document.sign_up.submit()
  15.   }
  16. }
  17.  
Nov 8 '07 #1
14 3622
iam_clint
1,208 Recognized Expert Top Contributor
Your question is hard to answer because I don't understand what you want to do... do you want the spaces to be stripped and the spaces removed from the length of the input? so the code halts?
Nov 8 '07 #2
jasone
66 New Member
Hi,
just to confirm your question,
do you want a validation like the one on this website which i am currently working on: http://www.simplicity-design.co.uk/

if you go to the register section and try to enter a name under 5 characters an error is shown.

if this is the problem will happily provide the script for you..

jason
Nov 8 '07 #3
gits
5,390 Recognized Expert Moderator Expert
hi ...

you may use the following adaption for the length check:

Expand|Select|Wrap|Line Numbers
  1. username.replace(/ /g, '').length;
kind regards
Nov 9 '07 #4
Markus
6,050 Recognized Expert Expert
This little thing is bugging me ¬_¬

I'm trying to validate a form and then submit it through javascript.

But i've hit the folllowing problem:

when i do
Expand|Select|Wrap|Line Numbers
  1. function validateInput()
  2. {
  3.  var username = document.form.username
  4.   if(username.length <= 6){
  5.    alert("Username must be longer than 6 characters!")
  6.   }
  7. }
  8.  
But if i enter a space(and nothing else), it for some reason validates and then submits the form.

Anyone know how i can counter this?
Nov 10 '07 #5
Logician
210 New Member

Expand|Select|Wrap|Line Numbers
  1. var username = document.form.username
  2.   if(username.length <= 6){
  3.  
You need to read the .value property, and you should always strip any leading or trailing spaces before reading the string, and display that it has been done:

Expand|Select|Wrap|Line Numbers
  1. var username = document.form.username.value.replace(/^\s+|\s+$/g,'');
  2. document.form.username.value=username;
  3. if( username.length <= 6 )
  4.  alert("Username must be longer than 6 characters!")
  5.  
Nov 10 '07 #6
Markus
6,050 Recognized Expert Expert
You need to read the .value property, and you should always strip any leading or trailing spaces before reading the string, and display that it has been done:

Expand|Select|Wrap|Line Numbers
  1. var username = document.form.username.value.replace(/^\s+|\s+$/g,'');
  2. document.form.username.value=username;
  3. if( username.length <= 6 )
  4.  alert("Username must be longer than 6 characters!")
  5.  
Thanks for that!

A question though:
Expand|Select|Wrap|Line Numbers
  1. (/^\s+|\s+$/g,'');
  2.  
Could you explain that?

Thanks :)
Nov 10 '07 #7
gits
5,390 Recognized Expert Moderator Expert
hi ...

that is a regular Expression that matches leading and/or trailing spaces of the value you want to check. using it with the replace method the way it was done cuts off the spaces and so trims your value for such spaces ...

kind regards
Nov 10 '07 #8
Markus
6,050 Recognized Expert Expert
hi ...

that is a regular Expression that matches leading and/or trailing spaces of the value you want to check. using it with the replace method the way it was done cuts off the spaces and so trims your value for such spaces ...

kind regards
Thanks :)

but i just changed it to
Expand|Select|Wrap|Line Numbers
  1. (/ /, '')
  2.  
It seems to work, but is there something it's not doing now by me changing it?
Nov 10 '07 #9
Logician
210 New Member
Thanks :)

but i just changed it to
Expand|Select|Wrap|Line Numbers
  1. (/ /, '')
  2.  
It seems to work, but is there something it's not doing now by me changing it?
Yes - it's only removing the first space that it finds, which is why it wasn't given like that.
Nov 10 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

7
7571
by: - ions | last post by:
I have created a JComboBox with its Items as a list of "M" numbers ie. M1,M2,M3.......throgh too M110 (thes are the messier objects, a catolouge of deep sky objects) the user selects of of these and views it aswell as infomation. The program also has a JTextFiels which allows the user to enter the M number. The problem i have is checking that what the user has entered is valid, that being an M followed by 1 - 110 Nothing else, i thought of...
14
4178
by: Thelma Lubkin | last post by:
I am trying to limit the user's options to the choices offered by the combobox text, but I don't want this to extend to how he spaces out the text, e.g. 'abcdefg' and 'ab cd efg' should be equivalent. I know how to compare strings to see whether they meet this criterion--I don't know how to let the combobox know that this is what I want. I am thinking of dealing w/ this in the NotInList_event, but I don't know how to get to the...
3
3360
by: Prince | last post by:
I have some <RequiredFieldValidator> on my page and everything works fine except that there are lots of white spaces between the web server controls that are being validated. I've set the Display properties for all the controls to "Dynamic" and still I can't get rid of the white spaces between controls. It's as if there are bunch of <br> tags separating the controls. For example,the "HTML" look similar to this.
4
2373
by: Patient Guy | last post by:
Does anyone have any coding rules they follow when doing argument checking? When arguments fail during check, do you return from the call with an ambiguous return value, or do you throw exceptions?
0
8139
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8091
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8579
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8555
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8232
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7024
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5524
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4098
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2540
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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

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