I have a list of strings like
"00000101000000110110000010010011",
"11110001000000001000000010010011",
I need to remove the first 4 characters from each string
so the resulting list will be like
"0101000000110110000010010011",
"0001000000001000000010010011",
Is there any way to do this using LINQ?