Remove special character from a string
I want to remove some special characters from my input string.The special Character may be anything like '.;=<>'.
I dont want any empty space to replace those value. lets say 1234;234 should come as 1234234.
0
-
this can be achieved using the string translate( ) function inside the data mapping.
For example:
translate( $Input_SourceSchema/input_Source/Record/Field1,' ; ' ,' ')
For more information please refer the Developer Guide( Data Transformation> Using Mapping Functions) and the below link:
http://support.adeptia.com/entries/21270723-Using-Translation-function
0
Post is closed for comments.
Comments
1 comment