How can i add more numbers in the first cell like adding “63” to the cells which started with “8” in the cells. For example
from
832118744833
want to change to
62832118744833
thank you
How can i add more numbers in the first cell like adding “63” to the cells which started with “8” in the cells. For example
from
832118744833
want to change to
62832118744833
thank you
Hello @febriansyah28,
You can use the String Manipulation node and write an expression like:
regexReplace($column1$, “^8”, “63$0”)
for your reference. Also, an image is attached:
Output:
if you have got the solution, please mark it with a green tick
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.