Page 1 of 1

Alphanumeric data

Posted: Fri Jan 09, 2015 8:58 am
by edward_m
I was trying to process only numeric data in a file based on a particular column and track other records with Alpha numeric. i used

Code: Select all

num(column)=1
to process recrods with numeric data, however when i try to use

Code: Select all

num(column)<>1
to track records with alphanumeric records, could you please suggest me whats the best way to track alpha numeric records,i use constraint in transformer stage.

Thanks in advance for your help.

Re: Alphanumeric data

Posted: Fri Jan 09, 2015 9:12 am
by chulett
edward_m wrote:however when i try to use <snip>
What happens?

Perhaps a simple if-then-else?

If num(column) then X else Y

Posted: Fri Jan 09, 2015 8:14 pm
by ray.wurlod
alnum() function.

Posted: Mon Jan 12, 2015 3:37 am
by RPhani
Hi,

I think Alnum() checks for Alphabets Or Numbers Or AlphaNumerics in a string.
Not only AlphaNumerics.

=========================
RPhani

Posted: Mon Jan 12, 2015 3:43 am
by ray.wurlod
Read the manual.

Re: Alphanumeric data

Posted: Mon Jan 12, 2015 11:03 am
by vibwipro
It Checks only alphanumeric characters

Link :- https://dtdctw99.tdbank.ca/infocenter/i ... ditor.html :idea:

Posted: Mon Jan 12, 2015 11:18 am
by chulett
Hence the name.