Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,



I wanted to add addition string to exsting one. for example.....String value is "Adam/D". I want to print result as "From Adam D"...Any help....
Posted

1 solution

VB
"From " + Split (fieldname,"/")[0]  + " " +  Split (fieldname,"/")[1]

or... simply replace "/" with " "
VB
"From " + replace(fieldname,"/"," ");

Happy Coding!
:)
 
Share this answer
 
v3
Comments
Member 9861478 17-Apr-13 2:30am    
tnx..but still showing error!!
Aarti Meswania 17-Apr-13 2:31am    
what is error message?
Aarti Meswania 17-Apr-13 2:37am    
check updated solution you can also use replace function
Member 9861478 17-Apr-13 3:06am    
Excellent!!! It works..Happy coding..
Aarti Meswania 17-Apr-13 3:07am    
Thank you!
Glad to help you! :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900