Assign- CurrentRow (“Column1”).
It was converted to String through ToString and put in click.
Everything else works, but errors come out where special characters are included, such as &
help me please
Assign- CurrentRow (“Column1”).
It was converted to String through ToString and put in click.
Everything else works, but errors come out where special characters are included, such as &
help me please
Hi @wjdehdnr456
Try this
Assign - CurrentRow("ColumnName") = Uri.EscapeDataString(CurrentRow("ColumnName").ToString)
Hope it helps!!
Hey @wjdehdnr456
Give a try with
Assign
CurrentRow("Column1") = System.Text.RegularExpressions.Regex.Replace(CurrentRow("Column1").ToString(), "[^a-z A-Z 0-9]", String.Empty)
Regards!
That way, only numbers are printed
If Korean is included, Korean will disappear and only numbers will remain
I need to get the same value and click
I think we need to handle the special characters correctly. I printed them out and only & should show up, but it looks like &.
I replaced the whole thing with a string and if there is & I want to handle it separately
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.