tags | status | tech | requester |
---|---|---|---|
work |
in progress |
SQL, Python, ETL |
ERAC |
Name: RAPTOR - Radiology Analytics Platform for Trends, Outcomes, & Recommendations
.
: Matches any character except a newline.
a.b
matches "aab", "acb", etc.^
: Matches the beginning of the string.
^abc
matches "abc" only if it appears at the start of the string.$
: Matches the end of the string.
abc$
matches "abc" only if it appears at the end of the string.[]
: Matches any one of the characters inside the brackets.[aeiou]
matches any vowel.