Hi,
With the String Manipulation Node I would like to only change an exact string. For instance,
RT → RTF
RTF → RTF
Right now when I use the string replace node I get this:
RT → RTF
RTF → RTFF
I understand why this is happening but cannot seem to figure out to fix.
Thanks,
Use
node with Replace Column option
$Group$ = “RT” => “RTF”
TRUE
1 Like
With the String manipulation I could only think of a regex solution. I think @izaychik63 way is the way to go
The problem here is that I have other values in this column so it replaces all of those values with a “?”
Sorry, try this
$Group$ = “RT” => “RTF”
TRUE => $Group$
1 Like
That worked great! Thank you!
Now could I use one node to perform this for multiple criteria?
For instance
“RT” => “RTF”
“GFS” => “DDS”
You need t add other criteria before the last line
$Group$ = “RT” => “RTF”
$Group$ = “GFS” => “DDS”
so on …
TRUE => $Group$
ipazin
May 21, 2021, 11:06am
8
Hi there!
replace() function has modifiers available and w
is to make replacement only when whole word is found. However Rule Engine seems better suited cause you have multiple replacements.
Br,
Ivan
system
Closed
November 19, 2021, 11:06pm
9
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.