Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-19 Thread Wayne Irvine
ing=javascript>".replace(/\W/g, "")'> > > Robert > > -----Original Message- > From: Wayne Irvine [mailto:wa...@byteserve.com.au] > Sent: Wednesday, July 18, 2018 7:21 PM > To: TeraScript-Talk@terascript.com > Subject: TeraScript-Talk: Remove non-alpha

RE: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-19 Thread Robert Shubert
ng=javascript>".replace(/\W/g, "")'> Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, July 18, 2018 7:21 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Remove non-alphanumeric characters I have a situa

Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-19 Thread Peter Dobbs
The regex pattern of terascript should be identical to the JavaScript pattern. https://regexr.com/ Peter Dobbs President | ENGINESS | P: 416.901.6151 | F: 416.901.6150 | www.enginess.io [cid:] This email and any attachments are confidential and are intended only for the person(s) to whom it

Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-18 Thread Wayne Irvine
Because I am interested in the Terascript implementation of REGEX. Wayne > On 19 Jul 2018, at 2:02 pm, Peter Dobbs wrote: > > Why not implement in JavaScript and bounce any requests that don’t comply? > > > Peter Dobbs > President | ENGINESS | P: 416.901.6151 | F: > 416.901.6150 | www.engines

Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-18 Thread Peter Dobbs
Why not implement in JavaScript and bounce any requests that don’t comply? Peter Dobbs President | ENGINESS | P: 416.901.6151 | F: 416.901.6150 | www.enginess.io [X] This email and any attachments are confidential and are intended only for the person(s) to whom it is addressed. It you are not

Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-18 Thread Wayne Irvine
Cheers. I was viewing this exact StackOverflow article prior to submitting my question. The question is more on implementing the REGEX statement in terascript, than the actual REGEx statement. Wayne > On 19 Jul 2018, at 12:55 pm, Peter Dobbs wrote: > > https://stackoverflow.com/questions/9364

Re: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-18 Thread Peter Dobbs
https://stackoverflow.com/questions/9364400/remove-not-alphanumeric-characters-from-string-having-trouble-with-the-char Peter Dobbs President | ENGINESS | P: 416.901.6151 | F: 416.901.6150 | www.enginess.io [cid:] This email and any attachments are confidential and are intended only for the p

TeraScript-Talk: Remove non-alphanumeric characters

2018-07-18 Thread Wayne Irvine
I have a situation where users might type in a string and I need to make a simple alphanumeric code from it. Previously I’ve used a bunch of REPLACE statements, but you can never underestimate fools. ;) I’m playing around with REGEX (again) and as usual, it has me stumped. I would like to code