Skip to content

StringValue

relationalai.semantics.std
StringValue = Union[Variable, str]

A type representing a string value, which can be a literal str or a Variable resulting from some other expression which will evaluate to a string.

 semantics > std
├──  common
│   ├──  parse_uuid
│   └──  raw_source
├──  datetime
│   ├──  date
│   │   ├──  format
│   │   └──  fromisoformat
│   └──  datetime
│       ├──  day
│       ├──  dayofyear
│       ├──  format
│       ├──  hour
│       ├──  isoweekday
│       ├──  minute
│       ├──  month
│       ├──  quarter
│       ├──  strptime
│       ├──  to_date
│       ├──  week
│       ├──  weekday
│       └──  year
├──  floats
│   └──  parse_float
├──  integers
│   ├──  parse
│   ├──  parse_int128
│   └──  parse_int64
├──  numbers
│   └──  parse_number
├──  re
│   ├──  RegexMatch
│   │   └──  group_by_name
│   ├──  findall
│   ├──  fullmatch
│   ├──  match
│   ├──  search
│   └──  sub
└──  strings
    ├──  concat
    ├──  contains
    ├──  endswith
    ├──  join
    ├──  len
    ├──  levenshtein
    ├──  like
    ├──  lower
    ├──  regex_match
    ├──  replace
    ├──  split
    ├──  split_part
    ├──  startswith
    ├──  string
    ├──  strip
    ├──  substring
    └──  upper