Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to trim full stop .
Name:
Raja .
Raja
Michel .
Michel
Thanks,
Krishna
Maybe like
Trim( Purgechar(Name,'.'))
May be as below:
Name_Table:
Load * Inline [
Name
Raja .
Raja
Michel .
Michel
];
NoConcatenate
Final:
Load
SubField(Name,' .',1) as Name
Resident Name_Table;
Drop Table Name_Table;
One more way with preceding load:
Name_Table:
Load SubField(Name,' .',1) as Name;
Load * Inline [
Name
Raja .
Raja
Michel .
Michel
];
You can also try,
Trim(Replace(Name,'.',''))