Hi Everyone!
I have two types of strings and I have to desing two types of follow path.
One of my string has two characters and the other one has three characters.
If my string has two chracters, I use it in excel. If my string has three characters, I use it in mail body. How to check them?
@ozgecatak
please count words in string
using this expression →
assign activity = my_first_str.Split(" “c).Count.ToString
assign activity=my_other_str.Split(” "c).Count.ToString
Thanks