> For the complete documentation index, see [llms.txt](https://wiki.owain.codes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.owain.codes/coding/c-sharp/regex.md).

# Regex

Check if a value starts with a number:&#x20;

```
  @using System.Text.RegularExpressions
  
      string patternStartsWithNumber = @"^(?:[0-9])";
      
      
  @if (!vacancy.VacancySalary.IsNullOrWhiteSpace() && Regex.Match(vacancy.VacancySalary, patternStartsWithNumber).Success)
                        {
                        }
```
