Skip to main content
1 of 2
Bbb
  • 721
  • 12
  • 39

Here is how I did it, it was easier for me then trying to figure out the specific regex necessary

int indexPictureData = result.IndexOf("-PictureData:"); int indexIdentity = result.IndexOf("-Identity:"); string returnValue = result.Remove(indexPictureData + 13); returnValue = returnValue + " [bytecoderemoved] " + result.Remove(0, indexIdentity);

Bbb
  • 721
  • 12
  • 39