Discussion:
[ADMIN] Testing post to ProFox
Ed Leafe
2018-05-18 17:14:54 UTC
Permalink
I've sent 2 emails in the past week that never showed up (and aren't in the archives). Testing to see if this gets through.
Nothing in the spam filter, so I'm not sure why they didn't get through.


-- Ed Leafe







--- StripMime Report -- processed MIME parts ---
multipart/signed
text/plain (text body -- kept)
application/pgp-signature
---

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/43F50C64-9B52-48B9-8F90-***@leafe.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Vince Teachout
2018-05-18 13:52:57 UTC
Permalink
PGRpdiBkaXI9J2F1dG8nPlBpbmchPC9kaXY+
Understood, comrade.
<whispers> "The frog in the pond utters an azure cry."


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus


_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/8b5b5771-260a-ce0e-f4ac-***@taconic.net
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Paul H. Tarver
2018-05-18 15:57:02 UTC
Permalink
I don't know if this would interest anyone but me, this thread got to me to thinking about a method I wrote years ago for my library class to clean text up and remove a default set of characters, but I can also pass a custom set of characters to be removed. It's called CLEANTEXT and the heart of it is the CHRTRAN command that Frank suggested.

His command noted it would leave behind invalid characters. So as a mental exercise, I created a new method called CLEANTEXT_NUMBER and it will use Frank's command to identify the invalid characters and then remove those invalid characters from the original string to leave you with only the good characters you want to leave behind without needing to know the invalid characters you want removed. In this new method, you just need to know what you want to keep. For example if you don't pass a value for the pcRequestedChars, it will assume you want just the digits to remain. But if you pass a special list of requested characters, it will return just those characters if they exist in the original string.

PARAMETERS pcStringToClean, pcRequestedChars
LOCAL leRetVal, lcValidChars, lcRemoveChars

If pcount() = 1

lcValidChars = "0123456789"

else

lcValidChars = pcRequestedChars

endif

lcRemoveChars = CHRTRAN(m.pcStringToClean, m. lcValidChars, "")

leRetVal = CHRTRAN(m.pcStringToClean, m.lcRemoveChars, "")

RETURN leRetVal

Stupid stuff I know, but a nice quick mental exercise! Thanks, Frank!

Paul H. Tarver


-----Original Message-----
From: ProfoxTech [mailto:profoxtech-***@leafe.com] On Behalf Of Frank Cazabon
Sent: Friday, May 18, 2018 8:01 AM
To: ***@leafe.com
Subject: Re: String help (was Re: [ADMIN] Testing post to ProFox)

m.x="123-456-7890"

CHRTRAN(m.x, "0123456789-", "") will leave any invalid characters behind

Frank.

Frank Cazabon
Well, other post still not making it, so I'll add the simple request
FieldValue1 = '123-456-7890'
I want to scan for records where the field contains something OTHER
than digits 0-9 and a dash. I recall it was some magic with one of
the TRANS that compared to itself and thus if the result was not
equal, it meant the field contained invalid characters outside your
desired set.
tia,
--Mike
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/04b701d3eec0$de5e7460$9b1b5d20$@tpcqpc.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Ted Roche
2018-05-18 20:33:44 UTC
Permalink
On Fri, May 18, 2018 at 8:37 AM,
I've sent 2 emails in the past week that never showed up (and aren't in the
archives). Testing to see if this gets through.
No, sorry Mike, still nothing ;)

Have a good weekend!
--
Ted Roche
Ted Roche & Associates, LLC
http://www.tedroche.com

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CACW6n4s43=kTTiNzifpxtKnm2D0qFr+***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
m***@mbsoftwaresolutions.com
2018-05-18 19:09:50 UTC
Permalink
On May 18, 2018, at 7:37 AM,
I've sent 2 emails in the past week that never showed up (and aren't
in the archives). Testing to see if this gets through.
Nothing in the spam filter, so I'm not sure why they didn't get through.
Weird. 3 different attempts never reached the list.

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/***@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
m***@mbsoftwaresolutions.com
2018-05-18 12:49:12 UTC
Permalink
I've sent 2 emails in the past week that never showed up (and aren't
in the archives). Testing to see if this gets through.
Winner

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/***@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Jim Brotz
2018-05-18 18:48:29 UTC
Permalink
Yes
I've sent 2 emails in the past week that never showed up (and aren't in
the archives). Testing to see if this gets through.
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CACbZHxy-1X8VT0M9MX0ieTbPCaS7cpZXY9XYdxvvQQT03a8+***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Man-wai Chang
2018-05-18 12:50:14 UTC
Permalink
Message received via Gmail.

On Fri, May 18, 2018 at 8:37 PM,
I've sent 2 emails in the past week that never showed up (and aren't in the
archives). Testing to see if this gets through.
--
.~. Might, Courage, Vision. SINCERITY!
/ v \ 64-bit Fedora 25 Server Spin
/( _ )\ http://sites.google.com/site/changmw
^ ^ May the Force and farces be with you!

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAGv=MJDPOA+***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
m***@mbsoftwaresolutions.com
2018-05-18 13:12:07 UTC
Permalink
Post by Paul H. Tarver
m.x="123-456-7890"
CHRTRAN(m.x, "0123456789-", "") will leave any invalid characters
behind
Frank.
Thanks, Frank!

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/***@mbsoftwaresolutions.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Kurt at VR-FX
2018-05-18 15:28:56 UTC
Permalink
Ha ha Ted - funny! What I actually wrote was...
Ping
PGRpdiBkaXI9J2F1dG8nPlBpbmchPC9kaXY+
What Kurt said. Happy Friday!
_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/dd7efe8e-8781-f6b2-8b0b-***@optonline.net
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Loading...