Advertisement
perjespersson

Untitled

Oct 18th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. //string test = "2019-10-16\t14:49:23\t1.76E-6\tAccept\r";
  2. //string test = "14:49:23\t1.76E-6\tAccept\r";
  3. string test = "2019-10-16\t1.76E-6\tAccept\r";
  4.  
  5. // test = test.Replace('.', ','); // Läser alla in . istället för , ?
  6.  
  7. //Date - Time
  8. if(test[4] == '-' && test[13] == ':')
  9. {
  10. TestLabel.Text = test.Remove(0, 20);
  11. }
  12. //Date
  13. else if (test[4] == '-')
  14. {
  15. TestLabel.Text = test.Remove(0, 11);
  16. }
  17. //Time
  18. else if (test[2] == ':')
  19. {
  20. TestLabel.Text = test.Remove(0, 9);
  21. }
  22.  
  23. /*
  24. if (test.Contains("E") || Convert.ToDouble(test) == 0)
  25. TestLabel.Text = "DET FUNKAR RASSEBASSE";
  26. else
  27. TestLabel.Text = "LASSEBASSE BINGBONG";
  28. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement