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!
A list of the currently available modules...
Technical Change HistoryThis Technical Change History provides a reverse chronological list of WebDNA changes...
F.A.QA compilation of some user's questions...
AWS Raw WebDNA LAMP-Plus WebServerAmazon Web Services (AWS) README for Machine Image ID...
WebDNA reference...
Download WebDNA ApplicationsWebDNA applications...
reCAPTCHA helps prevent automated abuse of your site (such as comment spam or bogus registrations) by using a CAPTCHA to ensure that only humans perform certain actions...
File upload example...
How many working days?This small script finds the number of working days between two dates...
Handling credit card numbersEncrypting the credit card numbers does the job quite nicely...
WebDNA interaction with zipI have a project where I'm allowing several people to upload images...
Annoying character on writefileHow do I get rid of or convert the line feed character during a writefile?...