How can I remove all whitespace entered by a user from an input box (ie card number)
numero = 48[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]
DOWNLOAD WEBDNA NOW!
This Technical Change History provides a reverse chronological list of WebDNA changes...
Download WebDNA ApplicationsWebDNA applications...
WebDNA ModulesA list of the currently available modules...
F.A.QA compilation of some user's questions...
WebDNA LibrariesA list of available libraries for WebDNA...
Tips and TricksA list of user-submitted tips ...
It's January 1st and you have to update the copyright notice at the bottom of all your websites...
Spaghetti codeHow to get rid of very long search strings...
Export data to ExcelHere's a handy way to export your data to a text or Excel file...
Setting a 30-minute CookieConfiguring the expires time for a short-term cookie is tricky...
WebDNA interaction with zipI have a project where I'm allowing several people to upload images...
File upload example...