string#
- class jsonpolars.expr.string.String(type: str = 'string', expr: T_EXPR = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/string.html
- class jsonpolars.expr.string.Split(type: str = 'str_split', expr: T_EXPR = _REQUIRED(), by: str = _REQUIRED(), inclusive: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.split.html
- class jsonpolars.expr.string.StrJoin(type: str = 'str_join', expr: T_EXPR = _REQUIRED(), delimiter: str = _NOTHING(), ignore_nulls: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.join.html
- class jsonpolars.expr.string.StrContains(type: str = 'str_contains', expr: T_EXPR = _REQUIRED(), pattern: Union[str, T_EXPR] = _REQUIRED(), literal: bool = _NOTHING(), strict: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.contains.html
- class jsonpolars.expr.string.StrDecode(type: str = 'str_decode', expr: T_EXPR = _REQUIRED(), encoding: str = _REQUIRED(), strict: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.decode.html
- class jsonpolars.expr.string.StrEncode(type: str = 'str_encode', expr: T_EXPR = _REQUIRED(), encoding: str = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.encode.html
- class jsonpolars.expr.string.StrStartsWith(type: str = 'str_starts_with', expr: T_EXPR = _REQUIRED(), prefix: Union[str, T_EXPR] = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.starts_with.html
- class jsonpolars.expr.string.StrEndsWith(type: str = 'str_ends_with', expr: T_EXPR = _REQUIRED(), suffix: Union[str, T_EXPR] = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.ends_with.html
- class jsonpolars.expr.string.StrToDatetime(type: str = 'str_to_datetime', expr: T_EXPR = _REQUIRED(), format: Optional[str] = _NOTHING(), time_unit: Optional[str] = _NOTHING(), time_zone: Optional[str] = _NOTHING(), strict: bool = _NOTHING(), exact: bool = _NOTHING(), cache: bool = _NOTHING(), ambiguous: str = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_datetime.html
- class jsonpolars.expr.string.StrToDate(type: str = 'str_to_date', expr: T_EXPR = _REQUIRED(), format: Optional[str] = _NOTHING(), strict: bool = _NOTHING(), exact: bool = _NOTHING(), cache: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_date.html
- class jsonpolars.expr.string.StrZfill(type: str = 'str_zfill', expr: T_EXPR = _REQUIRED(), length: int = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.zfill.html
- class jsonpolars.expr.string.StrPadStart(type: str = 'str_pad_start', expr: T_EXPR = _REQUIRED(), length: int = _REQUIRED(), fill_char: str = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.pad_start.html
- class jsonpolars.expr.string.StrPadEnd(type: str = 'str_pad_end', expr: T_EXPR = _REQUIRED(), length: int = _REQUIRED(), fill_char: str = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.pad_end.html
- class jsonpolars.expr.string.StrToLowerCase(type: str = 'str_to_lowercase', expr: T_EXPR = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_lowercase.html
- class jsonpolars.expr.string.StrToUpperCase(type: str = 'str_to_uppercase', expr: T_EXPR = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_uppercase.html
- class jsonpolars.expr.string.StrToTitleCase(type: str = 'str_to_titlecase', expr: T_EXPR = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_titlecase.html
- class jsonpolars.expr.string.StrHead(type: str = 'str_head', expr: T_EXPR = _REQUIRED(), n: int = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.head.html
- class jsonpolars.expr.string.StrTail(type: str = 'str_tail', expr: T_EXPR = _REQUIRED(), n: int = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.tail.html
- class jsonpolars.expr.string.StrSlice(type: str = 'str_slice', expr: T_EXPR = _REQUIRED(), offset: int = _REQUIRED(), length: int = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.slice.html
- class jsonpolars.expr.string.StrReplace(type: str = 'str_replace', expr: T_EXPR = _REQUIRED(), pattern: Union[str, T_EXPR] = _REQUIRED(), value: Union[str, T_EXPR] = _REQUIRED(), literal: bool = _NOTHING(), n: int = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.replace.html
- class jsonpolars.expr.string.StrReplaceAll(type: str = 'str_replace_all', expr: T_EXPR = _REQUIRED(), pattern: Union[str, T_EXPR] = _REQUIRED(), value: Union[str, T_EXPR] = _REQUIRED(), literal: bool = _NOTHING())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.replace_all.html