Click on special characters

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!!

1 Like

The Target.Strict Selector property value is not a valid XML syntax.

When I click, I get an error

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!

1 Like

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 &amp.
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.