How to Convert Normal String in UiPath to a Camel Case

In UiPath , its important that all the variables and arguments that we use in our automation should be in camel case while automation and we can easily achieve this by the vb.net code.
To use the code, first we have to import System.Globalization namespace.

Step 1:-

Lets create a normal variable in UiPath.

Step 2:-

Lets now write a vb.net code to convert the above variable to a proper camel case.

Step 3:-

Run the workflow now.

I hope you enjoyed the article!

Happy Automation!!

1 Like

nice info.

2 Likes

Amazing Information! I really enjoyed this article. Its really helpful.

2 Likes

Note- If your string is “INDIA” make sure you put the string to lowercase first (“yourString.ToLower”) then apply the Camel Case logic.