StringOperations.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using static System.Runtime.InteropServices.JavaScript.JSType;
  7. namespace Library9Delegates
  8. {
  9. delegate int SimbolInStr(char simbol, string str);
  10. internal class StringOperations
  11. {
  12. /// <summary>
  13. /// Количество вхождений символа в строку
  14. /// </summary>
  15. /// <param name="simbol"></param>
  16. /// <param name="str"></param>
  17. /// <returns></returns>
  18. public static int GetNumberSimbolInStr(char simbol, string str)
  19. {
  20. int count = 0;
  21. for (int i = 0; i < str.Length; i++)
  22. {
  23. if (str[i] == simbol)
  24. {
  25. count++;
  26. }
  27. }
  28. return count;
  29. }
  30. /// <summary>
  31. /// Возвращает индекс первого вхождения в строку и -1, если в строке нет символа
  32. /// </summary>
  33. /// <param name="simbol"></param>
  34. /// <param name="str"></param>
  35. /// <returns></returns>
  36. public static int GetIndexSimbolInStr(char simbol, string str) => str.IndexOf(simbol);
  37. }
  38. }