I need to change upper case character to lower case character in string.
I have a variable str assigned to this string value “ahuDjnTksNW”.
Now i need to change all the upper case characters to lower case characters and i have to print the particular character in a message box which i changed from upper case to lower case.
Hi
hope these steps would help you resolve this
–use a assign activity like this
strinput = “ahuDjnTksNW”
now use a MATCHES activity where pass the input string as strinput and expressions as [A-Z] and get the output with a variable of type matches named out_match
–now use a FOR EACH activity and mention the above variable out_match as input
and change the type argument as System.Text.RegularExpressions.Match and inside the loop use a MESSAGE BOX activity and mention the input as item.ToString.ToLower
For this an approach on regex Base as given by @Palaniyappan can Help
Another rough Shot can be implemented based on character Code e.g A =65, Z=90. Iterate over each character (for each, linq Statement) and detect lower Case character bY character code As @Yoichi gave you a good Starter above