I have input dailog which takes the input from the user
Eg if the user gives input as - My name is Ishan
The output should be :
Eg - if the user gives input as - I like apples
The output should be :
I have input dailog which takes the input from the user
Eg if the user gives input as - My name is Ishan
The output should be :
Eg - if the user gives input as - I like apples
The output should be :
You can try with regex expression
System.Text.RegularExpressions.Regex.Replace(YourString,"\s","*").Tostring
Regards
Gokul
Try also with this expression
System.Text.RegularExpressions.Regex.Replace(yourString,"\s|$","*").Tostring
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.