Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can you pl show your existing job design?
Vaibhav
If you enable Advance mode in tReplace, you could do more complex processing... try that
Vaibhav
hi cicas,
Answer for your second question :
There is no need to use treplace component to replace. i suggest you to do like follows:
remove component treplace_1 and tconvertType_1 from your job, instead of that two componet add tmap_2. something like this:
tgetproduct---(getting full string)-----> tmap_2---lookup (data type integer)---> tMap_1
in tmap_2 just write this statement in expression builder:
(row1.patternCheck.toLowerCase().indexOf("bye") >= 0)?1:2
then you will get as your requirement. "row1.patternCheck" is your row from table
"bye" present -----> 1
"bye" not present -----> 2
hope this will solve your second question.
Regards,
Akki