Link to home
Start Free TrialLog in
Avatar of Prysson
Prysson

asked on

How can I increase a strings value alphabetically

Lets say I have a string value

string s = "A";

I need to perform some function with that string while its value is A...but then I need to make it

s= "B";

and then run the same function with tha value being B

So its almost like running a for loop with an integert going up to a value...but I dont know if its possibel to automatially makea string go up the alphabet.

ASKER CERTIFIED SOLUTION
Avatar of Babycorn-Starfish
Babycorn-Starfish
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Prysson
Prysson

ASKER

String array did the trick