Advertisement
Neveles

Untitled

Dec 15th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.19 KB | None | 0 0
  1. #include <string>
  2.  
  3. using namespace std;
  4.  
  5. string ifAuthor(const string& temp, int& index , const int &iStr)
  6. {
  7.     string author = "";
  8.  
  9.     // проверка наличия одного(!) пробела
  10.     unsigned int nOfSymbols = 0;
  11.     for (unsigned int j = 0; temp[j] != '|'; ++j)
  12.     {
  13.         if (temp[j] == ' ')
  14.             ++nOfSymbols;
  15.         if (nOfSymbols > 1)
  16.         {
  17.             throw iStr;
  18.         }
  19.     }
  20.     if (nOfSymbols != 1)
  21.     {
  22.         throw iStr;
  23.     }
  24.     // проверка фамилии и инициалов
  25.     if (temp[index] >= 'А' && temp[index] <= 'Я' || temp[index] == 'Ё')
  26.     {
  27.         author += temp[index];
  28.         ++index;
  29.         for (; temp[index] != ' '; ++index)
  30.         {
  31.             if (temp[index] >= 'а' && temp[index] <= 'я' || temp[index] == 'ё')
  32.                 author += temp[index];
  33.             else
  34.             {
  35.                 throw iStr;
  36.             }
  37.         }
  38.         author += ' ';
  39.         ++index;
  40.         if (temp[index + 4] != '|')
  41.         {
  42.             throw iStr;
  43.         }
  44.         if ((temp[index] >= 'А' && temp[index] <= 'Я' || temp[index] == 'Ё') &&
  45.             temp[index + 1] == '.' &&
  46.             (temp[index + 2] >= 'А' && temp[index + 2] <= 'Я' || temp[index + 2] == 'Ё') &&
  47.             temp[index + 3] == '.')
  48.         {
  49.             for (; temp[index] != '|'; index++)
  50.                 author += temp[index];
  51.         }
  52.         else
  53.         {
  54.             throw iStr;
  55.         }
  56.     }
  57.     else
  58.     {
  59.         throw iStr;
  60.     }
  61.     ++index;
  62.  
  63.     return author;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement