We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this issue is taken reference from uipath fourm question
remove characters after a character in cell
instead of removing characters after underscore I am removing characters after decimal.
Sample input 1.00 0.01 2.35
Sample output 1 0 2
The text was updated successfully, but these errors were encountered:
Split will help .. !! txt.split("."c).first
Sorry, something went wrong.
but how to get final table?
vajrang-b
No branches or pull requests
this issue is taken reference from uipath fourm question
remove characters after a character in cell
instead of removing characters after underscore I am removing characters after decimal.
Sample input
1.00
0.01
2.35
Sample output
1
0
2
The text was updated successfully, but these errors were encountered: