Search results

  1. T

    Need help reading binary file

    Trying to read a binary file and cannot put the bytes into a string. Does anybody have and advice? Thanks BinaryReader binaryreader = new BinaryReader(File.OpenRead(file location)); while(binaryreader.Read() > 0) {...
  2. T

    Replace comma with tab

    I need some help with my program. Write a function that takes a string of comma seperated values and returnd a string of tab seperated values. String str = new String("Hello, BHW, how, are, you, today?"); str.replaceAll("," , " "); This is...
Back
Top