Removing whitespace

How can I remove all whitespace entered by a user from an input box (ie card number)

numero = 48
interpreted = N
texte =
[grep search=[^0-9]&replace=][card][/grep]
In this case, [^0-9], including the square brackets, is a grep expression. A grep bracket expression is a list of characters enclosed by [ and ]. It matches any single character in that list; if the first character of the list is the caret ^ then it matches any character not in the list. So in this case, grep will strip out anything that is not a digit.
[grep search=[^0-9]&replace=][card][/grep]


In this case, [^0-9], including the square brackets, is a grep expression. A grep bracket expression is a list of characters enclosed by [ and ]. It matches any single character in that list; if the first character of the list is the caret ^ then it matches any character not in the list. So in this case, grep will strip out anything that is not a digit. Bill

DOWNLOAD WEBDNA NOW!

Top Articles:

Technical Change History

This Technical Change History provides a reverse chronological list of WebDNA changes...

WebDNA Modules

A list of the currently available modules...

Download WebDNA Applications

WebDNA applications...

Tips and Tricks

A list of user-submitted tips ...

WebDNA reference

...

AWS Raw WebDNA LAMP-Plus WebServer

Amazon Web Services (AWS) README for Machine Image ID...

Related Readings:

Handling credit card numbers

Encrypting the credit card numbers does the job quite nicely...

WebDNA interaction with zip

I have a project where I'm allowing several people to upload images...

Extracting the first sentence out of a block of text

I need to extract the first sentence out of a block of text...

WebDNA Google Map Mashup

Generate a Google map with pins on your database addresses...

Check the Federal Government's Social Security database

The script on the page will check the federal government's social security database...

Write Once Use Many

Reuse the same code over and over again on your site with the [include] context...