Im not good at regex and I need your help. I have string like this: Re:_=C8SOB_Poji=9A=9Dovna and I need to split into string[] by individual letters, but when "=" appears the following two symbols are as one entry field.
Example: string input = "Re:_=C8SOB_Poji=9A=9Dovna";
Result: string[] strs = {R,e,:,_,C8,S,O,B,_,P,o,j,i,9A,9D,o,v,n,a}