Click here to Skip to main content
15,886,026 members
Home / Discussions / C#
   

C#

 
QuestionHow to get the Count of webseit visitors using Razor ASP.Core ? Pin
Abdalla Ben Omran26-May-19 23:43
Abdalla Ben Omran26-May-19 23:43 
AnswerRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
OriginalGriff27-May-19 0:43
mveOriginalGriff27-May-19 0:43 
GeneralRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
Abdalla Ben Omran27-May-19 0:59
Abdalla Ben Omran27-May-19 0:59 
GeneralRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
OriginalGriff27-May-19 1:05
mveOriginalGriff27-May-19 1:05 
GeneralRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
Abdalla Ben Omran27-May-19 1:56
Abdalla Ben Omran27-May-19 1:56 
GeneralRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
Gerry Schmitz27-May-19 7:58
mveGerry Schmitz27-May-19 7:58 
AnswerRe: How to get the Count of webseit visitors using Razor ASP.Core ? Pin
#realJSOP27-May-19 7:34
mve#realJSOP27-May-19 7:34 
QuestionHow to replace every different char with another given char Pin
Member 1379031625-May-19 5:49
Member 1379031625-May-19 5:49 
I need to replace every 'a' char with 'b' char, every 'b' char with 'c' char and so on. I've tried to make this with if but code is very very long for every char. Exists a method how mo make this without if or switch or something like that?

This how i tried but i want a good method:
C#
char[] chars = new char[inputString.Length];
for (int i = 0; i < inputString.Length; i++)
{
    if (inputString[i] == 'a')
        chars[i] = 'b';
    else if (inputString[i] == 'b')
        chars[i] = 'c';
    else if (inputString[i] == 'c')
        chars[i] = 'd';
    else if (inputString[i] == 'd')
        chars[i] = 'e';
    else if (inputString[i] == 'e')
        chars[i] = 'f';
    else if (inputString[i] == 'f')
        chars[i] = 'g';
    else if (inputString[i] == 'g')
        chars[i] = 'h';
    else
    {
        chars[i] = inputString[i];
    }
}
string outputString = new string(chars);

AnswerRe: How to replace every different char with another given char Pin
Richard MacCutchan25-May-19 6:04
mveRichard MacCutchan25-May-19 6:04 
AnswerRe: How to replace every different char with another given char Pin
OriginalGriff25-May-19 6:34
mveOriginalGriff25-May-19 6:34 
JokeRe: How to replace every different char with another given char Pin
Eddy Vluggen25-May-19 10:05
professionalEddy Vluggen25-May-19 10:05 
AnswerRe: How to replace every different char with another given char Pin
Gerry Schmitz25-May-19 6:59
mveGerry Schmitz25-May-19 6:59 
AnswerRe: How to replace every different char with another given char Pin
BillWoodruff25-May-19 18:43
professionalBillWoodruff25-May-19 18:43 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031625-May-19 22:33
Member 1379031625-May-19 22:33 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff25-May-19 23:29
professionalBillWoodruff25-May-19 23:29 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031626-May-19 0:23
Member 1379031626-May-19 0:23 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff26-May-19 0:50
professionalBillWoodruff26-May-19 0:50 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031626-May-19 1:52
Member 1379031626-May-19 1:52 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff26-May-19 18:57
professionalBillWoodruff26-May-19 18:57 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031626-May-19 19:01
Member 1379031626-May-19 19:01 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff26-May-19 21:16
professionalBillWoodruff26-May-19 21:16 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031627-May-19 0:33
Member 1379031627-May-19 0:33 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff27-May-19 0:46
professionalBillWoodruff27-May-19 0:46 
GeneralRe: How to replace every different char with another given char Pin
Member 1379031627-May-19 0:56
Member 1379031627-May-19 0:56 
GeneralRe: How to replace every different char with another given char Pin
BillWoodruff27-May-19 2:39
professionalBillWoodruff27-May-19 2:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.