Skip to content

Compiler — v.6.0.0

Compare
Choose a tag to compare
@Alexey-Sagaydak Alexey-Sagaydak released this 14 Apr 14:11
· 1 commit to master since this release

Implemented Regular Expressions (Lab6)

  1. Russian City Telephone Numbers Validation

    • Add a regular expression (RE) to validate Russian city telephone numbers.
    • Format: 7 digits separated by spaces or dashes, without the city code.
    • Example: "123 45 67", "987-65-43".
  2. Russian Full Name Validation

    • Add a regular expression to describe Russian full names (surname, first name, and patronymic).
    • Example: "Иванов Иван Иванович", "Петрова Анна Петровна", "Сидоров Сергей Александрович".
  3. Latitude Validation

    • Add a regular expression to describe latitude, considering the correct range of values.
    • Example: "-90", "0.5", "45", "-10.23".