Hi,
how to split word like "Software" into alphabet like it should return me "s" "o" "f" "t" "w" "a" "r" "e" on webform.
this word is save into sql server database and i want to retreive the word and show it into alphabet with space.
This way
string s = "software"; char[] characters = s.ToCharArray(); foreach (char c in characters) { Label1.Text += c.ToString() + " "; }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.