Skip to content

String Expressions

All string operations are valid for both scalars and columns.

StringValue

Bases: Value

Source code in ibis/expr/types/strings.py
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
@public
class StringValue(Value):
    def __getitem__(self, key: slice | int | ir.IntegerScalar) -> StringValue:
        """Index or slice a string expression.

        Parameters
        ----------
        key
            [`int`][int], [`slice`][slice] or integer scalar expression

        Returns
        -------
        StringValue
            Indexed or sliced string value

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"food": ["bread", "cheese", "rice"], "idx": [1, 2, 4]})
        >>> t
        ┏━━━━━━━━┳━━━━━━━┓
        ┃ food   ┃ idx   ┃
        ┡━━━━━━━━╇━━━━━━━┩
        │ string │ int64 │
        ├────────┼───────┤
        │ bread  │     1 │
        │ cheese │     2 │
        │ rice   │     4 │
        └────────┴───────┘
        >>> t.food[0]
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ Substring(food, 0, 1) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                │
        ├───────────────────────┤
        │ b                     │
        │ c                     │
        │ r                     │
        └───────────────────────┘
        >>> t.food[:3]
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ Substring(food, 0, 3) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                │
        ├───────────────────────┤
        │ bre                   │
        │ che                   │
        │ ric                   │
        └───────────────────────┘
        >>> t.food[3:5]
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ Substring(food, 3, 2) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                │
        ├───────────────────────┤
        │ ad                    │
        │ es                    │
        │ e                     │
        └───────────────────────┘
        >>> t.food[7]
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ Substring(food, 7, 1) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                │
        ├───────────────────────┤
        │ ~                     │
        │ ~                     │
        │ ~                     │
        └───────────────────────┘
        """
        from ibis.expr import types as ir

        if isinstance(key, slice):
            start, stop, step = key.start, key.stop, key.step

            if step is not None and not isinstance(step, ir.Expr) and step != 1:
                raise ValueError('Step can only be 1')

            if not isinstance(start, ir.Expr):
                if start is not None and start < 0:
                    raise ValueError(
                        "Negative slicing not yet supported, got start value "
                        f"of {start:d}"
                    )
                if start is None:
                    start = 0

            if not isinstance(stop, ir.Expr):
                if stop is not None and stop < 0:
                    raise ValueError(
                        "Negative slicing not yet supported, got stop value "
                        f"of {stop:d}"
                    )
                if stop is None:
                    stop = self.length()

            return self.substr(start, stop - start)
        elif isinstance(key, int):
            return self.substr(key, 1)
        raise NotImplementedError(f"string __getitem__[{key.__class__.__name__}]")

    def length(self) -> ir.IntegerValue:
        """Compute the length of a string.

        Returns
        -------
        IntegerValue
            The length of each string in the expression

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["aaa", "a", "aa"]})
        >>> t.s.length()
        ┏━━━━━━━━━━━━━━━━━┓
        ┃ StringLength(s) ┃
        ┡━━━━━━━━━━━━━━━━━┩
        │ int32           │
        ├─────────────────┤
        │               3 │
        │               1 │
        │               2 │
        └─────────────────┘
        """
        return ops.StringLength(self).to_expr()

    def lower(self) -> StringValue:
        """Convert string to all lowercase.

        Returns
        -------
        StringValue
            Lowercase string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["AAA", "a", "AA"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ AAA    │
        │ a      │
        │ AA     │
        └────────┘
        >>> t.s.lower()
        ┏━━━━━━━━━━━━━━┓
        ┃ Lowercase(s) ┃
        ┡━━━━━━━━━━━━━━┩
        │ string       │
        ├──────────────┤
        │ aaa          │
        │ a            │
        │ aa           │
        └──────────────┘
        """
        return ops.Lowercase(self).to_expr()

    def upper(self) -> StringValue:
        """Convert string to all uppercase.

        Returns
        -------
        StringValue
            Uppercase string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["aaa", "A", "aa"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ aaa    │
        │ A      │
        │ aa     │
        └────────┘
        >>> t.s.upper()
        ┏━━━━━━━━━━━━━━┓
        ┃ Uppercase(s) ┃
        ┡━━━━━━━━━━━━━━┩
        │ string       │
        ├──────────────┤
        │ AAA          │
        │ A            │
        │ AA           │
        └──────────────┘
        """
        return ops.Uppercase(self).to_expr()

    def reverse(self) -> StringValue:
        """Reverse the characters of a string.

        Returns
        -------
        StringValue
            Reversed string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ abc    │
        │ def    │
        │ ghi    │
        └────────┘
        >>> t.s.reverse()
        ┏━━━━━━━━━━━━┓
        ┃ Reverse(s) ┃
        ┡━━━━━━━━━━━━┩
        │ string     │
        ├────────────┤
        │ cba        │
        │ fed        │
        │ ihg        │
        └────────────┘
        """
        return ops.Reverse(self).to_expr()

    def ascii_str(self) -> ir.IntegerValue:
        """Return the numeric ASCII code of the first character of a string.

        Returns
        -------
        IntegerValue
            ASCII code of the first character of the input

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
        >>> t.s.ascii_str()
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StringAscii(s) ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ int32          │
        ├────────────────┤
        │             97 │
        │            100 │
        │            103 │
        └────────────────┘
        """
        return ops.StringAscii(self).to_expr()

    def strip(self) -> StringValue:
        r"""Remove whitespace from left and right sides of a string.

        Returns
        -------
        StringValue
            Stripped string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ \ta\t  │
        │ \nb\n  │
        │ \vc\t  │
        └────────┘
        >>> t.s.strip()
        ┏━━━━━━━━━━┓
        ┃ Strip(s) ┃
        ┡━━━━━━━━━━┩
        │ string   │
        ├──────────┤
        │ a        │
        │ b        │
        │ c        │
        └──────────┘
        """
        return ops.Strip(self).to_expr()

    def lstrip(self) -> StringValue:
        r"""Remove whitespace from the left side of string.

        Returns
        -------
        StringValue
            Left-stripped string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ \ta\t  │
        │ \nb\n  │
        │ \vc\t  │
        └────────┘
        >>> t.s.lstrip()
        ┏━━━━━━━━━━━┓
        ┃ LStrip(s) ┃
        ┡━━━━━━━━━━━┩
        │ string    │
        ├───────────┤
        │ a\t       │
        │ b\n       │
        │ c\t       │
        └───────────┘
        """
        return ops.LStrip(self).to_expr()

    def rstrip(self) -> StringValue:
        r"""Remove whitespace from the right side of string.

        Returns
        -------
        StringValue
            Right-stripped string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ \ta\t  │
        │ \nb\n  │
        │ \vc\t  │
        └────────┘
        >>> t.s.rstrip()
        ┏━━━━━━━━━━━┓
        ┃ RStrip(s) ┃
        ┡━━━━━━━━━━━┩
        │ string    │
        ├───────────┤
        │ \ta       │
        │ \nb       │
        │ \vc       │
        └───────────┘
        """
        return ops.RStrip(self).to_expr()

    def capitalize(self) -> StringValue:
        """Capitalize the input string.

        Returns
        -------
        StringValue
            Capitalized string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
        >>> t.s.capitalize()
        ┏━━━━━━━━━━━━━━━┓
        ┃ Capitalize(s) ┃
        ┡━━━━━━━━━━━━━━━┩
        │ string        │
        ├───────────────┤
        │ Abc           │
        │ Def           │
        │ Ghi           │
        └───────────────┘
        """
        return ops.Capitalize(self).to_expr()

    initcap = capitalize

    def __contains__(self, *_: Any) -> bool:
        raise TypeError("Use string_expr.contains(arg)")

    def contains(self, substr: str | StringValue) -> ir.BooleanValue:
        """Return whether the expression contains `substr`.

        Parameters
        ----------
        substr
            Substring for which to check

        Returns
        -------
        BooleanValue
            Boolean indicating the presence of `substr` in the expression

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["bab", "ddd", "eaf"]})
        >>> t.s.contains("a")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringContains(s, 'a') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean                │
        ├────────────────────────┤
        │ True                   │
        │ False                  │
        │ True                   │
        └────────────────────────┘
        """
        return ops.StringContains(self, substr).to_expr()

    def hashbytes(
        self,
        how: Literal["md5", "sha1", "sha256", "sha512"] = "sha256",
    ) -> ir.BinaryValue:
        """Compute the binary hash value of the input.

        Parameters
        ----------
        how
            Hash algorithm to use

        Returns
        -------
        BinaryValue
            Binary expression
        """
        return ops.HashBytes(self, how).to_expr()

    def substr(
        self,
        start: int | ir.IntegerValue,
        length: int | ir.IntegerValue | None = None,
    ) -> StringValue:
        """Extract a substring.

        Parameters
        ----------
        start
            First character to start splitting, indices start at 0
        length
            Maximum length of each substring. If not supplied, searches the
            entire string

        Returns
        -------
        StringValue
            Found substring

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
        >>> t.s.substr(2)
        ┏━━━━━━━━━━━━━━━━━┓
        ┃ Substring(s, 2) ┃
        ┡━━━━━━━━━━━━━━━━━┩
        │ string          │
        ├─────────────────┤
        │ c               │
        │ fg              │
        │ jlk             │
        └─────────────────┘
        """
        return ops.Substring(self, start, length).to_expr()

    def left(self, nchars: int | ir.IntegerValue) -> StringValue:
        """Return the `nchars` left-most characters.

        Parameters
        ----------
        nchars
            Maximum number of characters to return

        Returns
        -------
        StringValue
            Characters from the start

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
        >>> t.s.left(2)
        ┏━━━━━━━━━━━━━━━━━━━━┓
        ┃ Substring(s, 0, 2) ┃
        ┡━━━━━━━━━━━━━━━━━━━━┩
        │ string             │
        ├────────────────────┤
        │ ab                 │
        │ de                 │
        │ hi                 │
        └────────────────────┘
        """
        return self.substr(0, length=nchars)

    def right(self, nchars: int | ir.IntegerValue) -> StringValue:
        """Return up to `nchars` from the end of each string.

        Parameters
        ----------
        nchars
            Maximum number of characters to return

        Returns
        -------
        StringValue
            Characters from the end

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
        >>> t.s.right(2)
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StrRight(s, 2) ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ string         │
        ├────────────────┤
        │ bc             │
        │ fg             │
        │ lk             │
        └────────────────┘
        """
        return ops.StrRight(self, nchars).to_expr()

    def repeat(self, n: int | ir.IntegerValue) -> StringValue:
        """Repeat a string `n` times.

        Parameters
        ----------
        n
            Number of repetitions

        Returns
        -------
        StringValue
            Repeated string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["a", "bb", "c"]})
        >>> t.s.repeat(5)
        ┏━━━━━━━━━━━━━━┓
        ┃ Repeat(s, 5) ┃
        ┡━━━━━━━━━━━━━━┩
        │ string       │
        ├──────────────┤
        │ aaaaa        │
        │ bbbbbbbbbb   │
        │ ccccc        │
        └──────────────┘
        """
        return ops.Repeat(self, n).to_expr()

    __mul__ = __rmul__ = repeat

    def translate(self, from_str: StringValue, to_str: StringValue) -> StringValue:
        """Replace `from_str` characters in `self` characters in `to_str`.

        To avoid unexpected behavior, `from_str` should be shorter than
        `to_str`.

        Parameters
        ----------
        from_str
            Characters in `arg` to replace
        to_str
            Characters to use for replacement

        Returns
        -------
        StringValue
            Translated string

        Examples
        --------
        >>> import ibis
        >>> table = ibis.table(dict(string_col='string'))
        >>> result = table.string_col.translate('a', 'b')
        """
        return ops.Translate(self, from_str, to_str).to_expr()

    def find(
        self,
        substr: str | StringValue,
        start: int | ir.IntegerValue | None = None,
        end: int | ir.IntegerValue | None = None,
    ) -> ir.IntegerValue:
        """Return the position of the first occurrence of substring.

        Parameters
        ----------
        substr
            Substring to search for
        start
            Zero based index of where to start the search
        end
            Zero based index of where to stop the search. Currently not
            implemented.

        Returns
        -------
        IntegerValue
            Position of `substr` in `arg` starting from `start`

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t.s.find("a")
        ┏━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringFind(s, 'a') ┃
        ┡━━━━━━━━━━━━━━━━━━━━┩
        │ int64              │
        ├────────────────────┤
        │                  0 │
        │                  1 │
        │                  2 │
        └────────────────────┘
        >>> t.s.find("z")
        ┏━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringFind(s, 'z') ┃
        ┡━━━━━━━━━━━━━━━━━━━━┩
        │ int64              │
        ├────────────────────┤
        │                 -1 │
        │                 -1 │
        │                 -1 │
        └────────────────────┘
        """
        if end is not None:
            raise NotImplementedError("`end` parameter is not yet implemented")
        return ops.StringFind(self, substr, start, end).to_expr()

    def lpad(
        self,
        length: int | ir.IntegerValue,
        pad: str | StringValue = " ",
    ) -> StringValue:
        """Pad `arg` by truncating on the right or padding on the left.

        Parameters
        ----------
        length
            Length of output string
        pad
            Pad character

        Returns
        -------
        StringValue
            Left-padded string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
        >>> t.s.lpad(5, "-")
        ┏━━━━━━━━━━━━━━━━━┓
        ┃ LPad(s, 5, '-') ┃
        ┡━━━━━━━━━━━━━━━━━┩
        │ string          │
        ├─────────────────┤
        │ --abc           │
        │ --def           │
        │ -ghij           │
        └─────────────────┘
        """
        return ops.LPad(self, length, pad).to_expr()

    def rpad(
        self,
        length: int | ir.IntegerValue,
        pad: str | StringValue = " ",
    ) -> StringValue:
        """Pad `self` by truncating or padding on the right.

        Parameters
        ----------
        self
            String to pad
        length
            Length of output string
        pad
            Pad character

        Returns
        -------
        StringValue
            Right-padded string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
        >>> t.s.rpad(5, "-")
        ┏━━━━━━━━━━━━━━━━━┓
        ┃ RPad(s, 5, '-') ┃
        ┡━━━━━━━━━━━━━━━━━┩
        │ string          │
        ├─────────────────┤
        │ abc--           │
        │ def--           │
        │ ghij-           │
        └─────────────────┘
        """
        return ops.RPad(self, length, pad).to_expr()

    def find_in_set(self, str_list: Sequence[str]) -> ir.IntegerValue:
        """Find the first occurrence of `str_list` within a list of strings.

        No string in `str_list` can have a comma.

        Parameters
        ----------
        str_list
            Sequence of strings

        Returns
        -------
        IntegerValue
            Position of `str_list` in `self`. Returns -1 if `self` isn't found
            or if `self` contains `','`.

        Examples
        --------
        >>> import ibis
        >>> table = ibis.table(dict(string_col='string'))
        >>> result = table.string_col.find_in_set(['a', 'b'])
        """
        return ops.FindInSet(self, str_list).to_expr()

    def join(self, strings: Sequence[str | StringValue] | ir.ArrayValue) -> StringValue:
        """Join a list of strings using `self` as the separator.

        Parameters
        ----------
        strings
            Strings to join with `arg`

        Returns
        -------
        StringValue
            Joined string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"arr": [["a", "b", "c"], None, [], ["b", None]]})
        >>> t
        ┏━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ arr                  ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━┩
        │ array<string>        │
        ├──────────────────────┤
        │ ['a', 'b', ... +1]   │
        │ NULL                 │
        │ []                   │
        │ ['b', None]          │
        └──────────────────────┘
        >>> ibis.literal("|").join(t.arr)
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ ArrayStringJoin('|', arr) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                    │
        ├───────────────────────────┤
        │ a|b|c                     │
        │ NULL                      │
        │ NULL                      │
        │ b                         │
        └───────────────────────────┘

        See Also
        --------
        [`ArrayValue.join`][ibis.expr.types.arrays.ArrayValue.join]
        """
        import ibis.expr.types as ir

        if isinstance(strings, ir.ArrayValue):
            cls = ops.ArrayStringJoin
        else:
            cls = ops.StringJoin
        return cls(self, strings).to_expr()

    def startswith(self, start: str | StringValue) -> ir.BooleanValue:
        """Determine whether `self` starts with `end`.

        Parameters
        ----------
        start
            prefix to check for

        Returns
        -------
        BooleanValue
            Boolean indicating whether `self` starts with `start`

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
        >>> t.s.startswith("Ibis")
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StartsWith(s, 'Ibis') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean               │
        ├───────────────────────┤
        │ True                  │
        │ False                 │
        └───────────────────────┘
        """
        return ops.StartsWith(self, start).to_expr()

    def endswith(self, end: str | StringValue) -> ir.BooleanValue:
        """Determine if `self` ends with `end`.

        Parameters
        ----------
        end
            Suffix to check for

        Returns
        -------
        BooleanValue
            Boolean indicating whether `self` ends with `end`

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
        >>> t.s.endswith("project")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ EndsWith(s, 'project') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean                │
        ├────────────────────────┤
        │ True                   │
        │ False                  │
        └────────────────────────┘
        """
        return ops.EndsWith(self, end).to_expr()

    def like(
        self,
        patterns: str | StringValue | Iterable[str | StringValue],
    ) -> ir.BooleanValue:
        """Match `patterns` against `self`, case-sensitive.

        This function is modeled after the SQL `LIKE` directive. Use `%` as a
        multiple-character wildcard or `_` as a single-character wildcard.

        Use `re_search` or `rlike` for regular expression-based matching.

        Parameters
        ----------
        patterns
            If `pattern` is a list, then if any pattern matches the input then
            the corresponding row in the output is `True`.

        Returns
        -------
        BooleanValue
            Column indicating matches

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
        >>> t.s.like("%project")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringSQLLike(s, '%project') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean                      │
        ├──────────────────────────────┤
        │ True                         │
        │ False                        │
        └──────────────────────────────┘
        """
        return functools.reduce(
            operator.or_,
            (
                ops.StringSQLLike(self, pattern).to_expr()
                for pattern in util.promote_list(patterns)
            ),
        )

    def ilike(
        self,
        patterns: str | StringValue | Iterable[str | StringValue],
    ) -> ir.BooleanValue:
        """Match `patterns` against `self`, case-insensitive.

        This function is modeled after SQL's `ILIKE` directive. Use `%` as a
        multiple-character wildcard or `_` as a single-character wildcard.

        Use `re_search` or `rlike` for regular expression-based matching.

        Parameters
        ----------
        patterns
            If `pattern` is a list, then if any pattern matches the input then
            the corresponding row in the output is `True`.

        Returns
        -------
        BooleanValue
            Column indicating matches

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
        >>> t.s.ilike("%PROJect")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringSQLILike(s, '%PROJect') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean                       │
        ├───────────────────────────────┤
        │ True                          │
        │ False                         │
        └───────────────────────────────┘
        """
        return functools.reduce(
            operator.or_,
            (
                ops.StringSQLILike(self, pattern).to_expr()
                for pattern in util.promote_list(patterns)
            ),
        )

    @util.backend_sensitive(
        why="Different backends support different regular expression syntax."
    )
    def re_search(self, pattern: str | StringValue) -> ir.BooleanValue:
        """Return whether the values match `pattern`.

        Returns `True` if the regex matches a string and `False` otherwise.

        Parameters
        ----------
        pattern
            Regular expression use for searching

        Returns
        -------
        BooleanValue
            Indicator of matches

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
        >>> t.s.re_search(".+Hub")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ RegexSearch(s, '.+Hub') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ boolean                 │
        ├─────────────────────────┤
        │ False                   │
        │ True                    │
        └─────────────────────────┘
        """
        return ops.RegexSearch(self, pattern).to_expr()

    rlike = re_search

    @util.backend_sensitive(
        why="Different backends support different regular expression syntax."
    )
    def re_extract(
        self,
        pattern: str | StringValue,
        index: int | ir.IntegerValue,
    ) -> StringValue:
        """Return the specified match at `index` from a regex `pattern`.

        Parameters
        ----------
        pattern
            Regular expression pattern string
        index
            The index of the match group to return.

            The behavior of this function follows the behavior of Python's
            [`match objects`](https://docs.python.org/3/library/re.html#match-objects):
            when `index` is zero and there's a match, return the entire match,
            otherwise return the content of the `index`-th match group.

        Returns
        -------
        StringValue
            Extracted match or whole string if `index` is zero

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})

        Extract a specific group

        >>> t.s.re_extract(r"^(a)bc", 1)
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ RegexExtract(s, '^(a)bc', 1) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                       │
        ├──────────────────────────────┤
        │ a                            │
        │ ~                            │
        │ ~                            │
        └──────────────────────────────┘

        Extract the entire match

        >>> t.s.re_extract(r"^(a)bc", 0)
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ RegexExtract(s, '^(a)bc', 0) ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                       │
        ├──────────────────────────────┤
        │ abc                          │
        │ ~                            │
        │ ~                            │
        └──────────────────────────────┘
        """
        return ops.RegexExtract(self, pattern, index).to_expr()

    @util.backend_sensitive(
        why="Different backends support different regular expression syntax."
    )
    def re_replace(
        self,
        pattern: str | StringValue,
        replacement: str | StringValue,
    ) -> StringValue:
        r"""Replace match found by regex `pattern` with `replacement`.

        Parameters
        ----------
        pattern
            Regular expression string
        replacement
            Replacement string or regular expression

        Returns
        -------
        StringValue
            Modified string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t.s.re_replace("^(a)", "b")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ RegexReplace(s, '^(a)', 'b') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                       │
        ├──────────────────────────────┤
        │ bbc                          │
        │ bac                          │
        │ bca                          │
        └──────────────────────────────┘
        """
        return ops.RegexReplace(self, pattern, replacement).to_expr()

    def replace(
        self,
        pattern: StringValue,
        replacement: StringValue,
    ) -> StringValue:
        """Replace each exact match of `pattern` with `replacement`.

        Parameters
        ----------
        pattern
            String pattern
        replacement
            String replacement

        Returns
        -------
        StringValue
            Replaced string

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t.s.replace("b", "z")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringReplace(s, 'b', 'z') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ string                     │
        ├────────────────────────────┤
        │ azc                        │
        │ zac                        │
        │ zca                        │
        └────────────────────────────┘
        """
        return ops.StringReplace(self, pattern, replacement).to_expr()

    def to_timestamp(self, format_str: str) -> ir.TimestampValue:
        """Parse a string and return a timestamp.

        Parameters
        ----------
        format_str
            Format string in `strptime` format

        Returns
        -------
        TimestampValue
            Parsed timestamp value

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"ts": ["20170206"]})
        >>> t.ts.to_timestamp("%Y%m%d")
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringToTimestamp(ts, '%Y%m%d') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
        │ timestamp('UTC')                │
        ├─────────────────────────────────┤
        │ 2017-02-06 00:00:00+00:00       │
        └─────────────────────────────────┘
        """
        return ops.StringToTimestamp(self, format_str).to_expr()

    def protocol(self):
        """Parse a URL and extract protocol.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
        >>> result = url.protocol()  # https

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractProtocol(self).to_expr()

    def authority(self):
        """Parse a URL and extract authority.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
        >>> result = url.authority()  # user:pass@example.com:80

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractAuthority(self).to_expr()

    def userinfo(self):
        """Parse a URL and extract user info.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
        >>> result = url.userinfo()  # user:pass

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractUserInfo(self).to_expr()

    def host(self):
        """Parse a URL and extract host.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
        >>> result = url.host()  # example.com

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractHost(self).to_expr()

    def file(self):
        """Parse a URL and extract file.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
        >>> result = url.file()  # docs/books/tutorial/index.html?name=networking

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractFile(self).to_expr()

    def path(self):
        """Parse a URL and extract path.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
        >>> result = url.path()  # docs/books/tutorial/index.html

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractPath(self).to_expr()

    def query(self, key: str | StringValue | None = None):
        """Parse a URL and returns query strring or query string parameter.

        If key is passed, return the value of the query string parameter named.
        If key is absent, return the query string.

        Parameters
        ----------
        key
            Query component to extract

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
        >>> result = url.query()  # name=networking
        >>> query_name = url.query('name')  # networking

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractQuery(self, key).to_expr()

    def fragment(self):
        """Parse a URL and extract fragment identifier.

        Examples
        --------
        >>> import ibis
        >>> url = ibis.literal("https://example.com:80/docs/#DOWNLOADING")
        >>> result = url.fragment()  # DOWNLOADING

        Returns
        -------
        StringValue
            Extracted string value
        """
        return ops.ExtractFragment(self).to_expr()

    def split(self, delimiter: str | StringValue) -> ir.ArrayValue:
        """Split as string on `delimiter`.

        !!! note "This API only works on backends with array support."

        Parameters
        ----------
        delimiter
            Value to split by

        Returns
        -------
        ArrayValue
            The string split by `delimiter`

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"col": ["a,b,c", "d,e", "f"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ col    ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ a,b,c  │
        │ d,e    │
        │ f      │
        └────────┘
        >>> t.col.split(",")
        ┏━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ StringSplit(col, ',') ┃
        ┡━━━━━━━━━━━━━━━━━━━━━━━┩
        │ array<string>         │
        ├───────────────────────┤
        │ ['a', 'b', ... +1]    │
        │ ['d', 'e']            │
        │ ['f']                 │
        └───────────────────────┘
        """
        return ops.StringSplit(self, delimiter).to_expr()

    def concat(self, other: str | StringValue, *args: str | StringValue) -> StringValue:
        """Concatenate strings.

        Parameters
        ----------
        other
            String to concatenate
        args
            Additional strings to concatenate

        Returns
        -------
        StringValue
            All strings concatenated

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t.s.concat("xyz")
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StringConcat() ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ string         │
        ├────────────────┤
        │ abcxyz         │
        │ bacxyz         │
        │ bcaxyz         │
        └────────────────┘
        """
        return ops.StringConcat((self, other, *args)).to_expr()

    def __add__(self, other: str | StringValue) -> StringValue:
        """Concatenate strings.

        Parameters
        ----------
        other
            String to concatenate

        Returns
        -------
        StringValue
            All strings concatenated

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ abc    │
        │ bac    │
        │ bca    │
        └────────┘
        >>> t.s + "z"
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StringConcat() ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ string         │
        ├────────────────┤
        │ abcz           │
        │ bacz           │
        │ bcaz           │
        └────────────────┘
        >>> t.s + t.s
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StringConcat() ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ string         │
        ├────────────────┤
        │ abcabc         │
        │ bacbac         │
        │ bcabca         │
        └────────────────┘
        """
        return self.concat(other)

    def __radd__(self, other: str | StringValue) -> StringValue:
        """Concatenate strings.

        Parameters
        ----------
        other
            String to concatenate

        Returns
        -------
        StringValue
            All strings concatenated

        Examples
        --------
        >>> import ibis
        >>> ibis.options.interactive = True
        >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
        >>> t
        ┏━━━━━━━━┓
        ┃ s      ┃
        ┡━━━━━━━━┩
        │ string │
        ├────────┤
        │ abc    │
        │ bac    │
        │ bca    │
        └────────┘
        >>> "z" + t.s
        ┏━━━━━━━━━━━━━━━━┓
        ┃ StringConcat() ┃
        ┡━━━━━━━━━━━━━━━━┩
        │ string         │
        ├────────────────┤
        │ zabc           │
        │ zbac           │
        │ zbca           │
        └────────────────┘
        """
        return ops.StringConcat((other, self)).to_expr()

    def convert_base(
        self,
        from_base: int | ir.IntegerValue,
        to_base: int | ir.IntegerValue,
    ) -> ir.IntegerValue:
        """Convert a string representing an integer from one base to another.

        Parameters
        ----------
        from_base
            Numeric base of the expression
        to_base
            New base

        Returns
        -------
        IntegerValue
            Converted expression
        """
        return ops.BaseConvert(self, from_base, to_base).to_expr()

    def __mul__(self, n: int | ir.IntegerValue) -> StringValue | NotImplemented:
        return _binop(ops.Repeat, self, n)

    __rmul__ = __mul__

Functions

ascii_str()

Return the numeric ASCII code of the first character of a string.

Returns:

Type Description
IntegerValue

ASCII code of the first character of the input

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
>>> t.s.ascii_str()
┏━━━━━━━━━━━━━━━━┓
┃ StringAscii(s) ┃
┡━━━━━━━━━━━━━━━━┩
│ int32          │
├────────────────┤
│             97 │
│            100 │
│            103 │
└────────────────┘
Source code in ibis/expr/types/strings.py
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
def ascii_str(self) -> ir.IntegerValue:
    """Return the numeric ASCII code of the first character of a string.

    Returns
    -------
    IntegerValue
        ASCII code of the first character of the input

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
    >>> t.s.ascii_str()
    ┏━━━━━━━━━━━━━━━━┓
    ┃ StringAscii(s) ┃
    ┡━━━━━━━━━━━━━━━━┩
    │ int32          │
    ├────────────────┤
    │             97 │
    │            100 │
    │            103 │
    └────────────────┘
    """
    return ops.StringAscii(self).to_expr()

authority()

Parse a URL and extract authority.

Examples:

>>> import ibis
>>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
>>> result = url.authority()  # user:pass@example.com:80

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
def authority(self):
    """Parse a URL and extract authority.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
    >>> result = url.authority()  # user:pass@example.com:80

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractAuthority(self).to_expr()

capitalize()

Capitalize the input string.

Returns:

Type Description
StringValue

Capitalized string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
>>> t.s.capitalize()
┏━━━━━━━━━━━━━━━┓
┃ Capitalize(s) ┃
┡━━━━━━━━━━━━━━━┩
│ string        │
├───────────────┤
│ Abc           │
│ Def           │
│ Ghi           │
└───────────────┘
Source code in ibis/expr/types/strings.py
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
def capitalize(self) -> StringValue:
    """Capitalize the input string.

    Returns
    -------
    StringValue
        Capitalized string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
    >>> t.s.capitalize()
    ┏━━━━━━━━━━━━━━━┓
    ┃ Capitalize(s) ┃
    ┡━━━━━━━━━━━━━━━┩
    │ string        │
    ├───────────────┤
    │ Abc           │
    │ Def           │
    │ Ghi           │
    └───────────────┘
    """
    return ops.Capitalize(self).to_expr()

concat(other, *args)

Concatenate strings.

Parameters:

Name Type Description Default
other str | StringValue

String to concatenate

required
args str | StringValue

Additional strings to concatenate

()

Returns:

Type Description
StringValue

All strings concatenated

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
>>> t.s.concat("xyz")
┏━━━━━━━━━━━━━━━━┓
┃ StringConcat() ┃
┡━━━━━━━━━━━━━━━━┩
│ string         │
├────────────────┤
│ abcxyz         │
│ bacxyz         │
│ bcaxyz         │
└────────────────┘
Source code in ibis/expr/types/strings.py
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
def concat(self, other: str | StringValue, *args: str | StringValue) -> StringValue:
    """Concatenate strings.

    Parameters
    ----------
    other
        String to concatenate
    args
        Additional strings to concatenate

    Returns
    -------
    StringValue
        All strings concatenated

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
    >>> t.s.concat("xyz")
    ┏━━━━━━━━━━━━━━━━┓
    ┃ StringConcat() ┃
    ┡━━━━━━━━━━━━━━━━┩
    │ string         │
    ├────────────────┤
    │ abcxyz         │
    │ bacxyz         │
    │ bcaxyz         │
    └────────────────┘
    """
    return ops.StringConcat((self, other, *args)).to_expr()

contains(substr)

Return whether the expression contains substr.

Parameters:

Name Type Description Default
substr str | StringValue

Substring for which to check

required

Returns:

Type Description
BooleanValue

Boolean indicating the presence of substr in the expression

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["bab", "ddd", "eaf"]})
>>> t.s.contains("a")
┏━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringContains(s, 'a') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean                │
├────────────────────────┤
│ True                   │
│ False                  │
│ True                   │
└────────────────────────┘
Source code in ibis/expr/types/strings.py
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
def contains(self, substr: str | StringValue) -> ir.BooleanValue:
    """Return whether the expression contains `substr`.

    Parameters
    ----------
    substr
        Substring for which to check

    Returns
    -------
    BooleanValue
        Boolean indicating the presence of `substr` in the expression

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["bab", "ddd", "eaf"]})
    >>> t.s.contains("a")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringContains(s, 'a') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean                │
    ├────────────────────────┤
    │ True                   │
    │ False                  │
    │ True                   │
    └────────────────────────┘
    """
    return ops.StringContains(self, substr).to_expr()

convert_base(from_base, to_base)

Convert a string representing an integer from one base to another.

Parameters:

Name Type Description Default
from_base int | ir.IntegerValue

Numeric base of the expression

required
to_base int | ir.IntegerValue

New base

required

Returns:

Type Description
IntegerValue

Converted expression

Source code in ibis/expr/types/strings.py
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
def convert_base(
    self,
    from_base: int | ir.IntegerValue,
    to_base: int | ir.IntegerValue,
) -> ir.IntegerValue:
    """Convert a string representing an integer from one base to another.

    Parameters
    ----------
    from_base
        Numeric base of the expression
    to_base
        New base

    Returns
    -------
    IntegerValue
        Converted expression
    """
    return ops.BaseConvert(self, from_base, to_base).to_expr()

endswith(end)

Determine if self ends with end.

Parameters:

Name Type Description Default
end str | StringValue

Suffix to check for

required

Returns:

Type Description
BooleanValue

Boolean indicating whether self ends with end

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
>>> t.s.endswith("project")
┏━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ EndsWith(s, 'project') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean                │
├────────────────────────┤
│ True                   │
│ False                  │
└────────────────────────┘
Source code in ibis/expr/types/strings.py
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
def endswith(self, end: str | StringValue) -> ir.BooleanValue:
    """Determine if `self` ends with `end`.

    Parameters
    ----------
    end
        Suffix to check for

    Returns
    -------
    BooleanValue
        Boolean indicating whether `self` ends with `end`

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
    >>> t.s.endswith("project")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ EndsWith(s, 'project') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean                │
    ├────────────────────────┤
    │ True                   │
    │ False                  │
    └────────────────────────┘
    """
    return ops.EndsWith(self, end).to_expr()

file()

Parse a URL and extract file.

Examples:

>>> import ibis
>>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
>>> result = url.file()  # docs/books/tutorial/index.html?name=networking

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
def file(self):
    """Parse a URL and extract file.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
    >>> result = url.file()  # docs/books/tutorial/index.html?name=networking

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractFile(self).to_expr()

find(substr, start=None, end=None)

Return the position of the first occurrence of substring.

Parameters:

Name Type Description Default
substr str | StringValue

Substring to search for

required
start int | ir.IntegerValue | None

Zero based index of where to start the search

None
end int | ir.IntegerValue | None

Zero based index of where to stop the search. Currently not implemented.

None

Returns:

Type Description
IntegerValue

Position of substr in arg starting from start

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
>>> t.s.find("a")
┏━━━━━━━━━━━━━━━━━━━━┓
┃ StringFind(s, 'a') ┃
┡━━━━━━━━━━━━━━━━━━━━┩
│ int64              │
├────────────────────┤
│                  0 │
│                  1 │
│                  2 │
└────────────────────┘
>>> t.s.find("z")
┏━━━━━━━━━━━━━━━━━━━━┓
┃ StringFind(s, 'z') ┃
┡━━━━━━━━━━━━━━━━━━━━┩
│ int64              │
├────────────────────┤
│                 -1 │
│                 -1 │
│                 -1 │
└────────────────────┘
Source code in ibis/expr/types/strings.py
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
def find(
    self,
    substr: str | StringValue,
    start: int | ir.IntegerValue | None = None,
    end: int | ir.IntegerValue | None = None,
) -> ir.IntegerValue:
    """Return the position of the first occurrence of substring.

    Parameters
    ----------
    substr
        Substring to search for
    start
        Zero based index of where to start the search
    end
        Zero based index of where to stop the search. Currently not
        implemented.

    Returns
    -------
    IntegerValue
        Position of `substr` in `arg` starting from `start`

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
    >>> t.s.find("a")
    ┏━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringFind(s, 'a') ┃
    ┡━━━━━━━━━━━━━━━━━━━━┩
    │ int64              │
    ├────────────────────┤
    │                  0 │
    │                  1 │
    │                  2 │
    └────────────────────┘
    >>> t.s.find("z")
    ┏━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringFind(s, 'z') ┃
    ┡━━━━━━━━━━━━━━━━━━━━┩
    │ int64              │
    ├────────────────────┤
    │                 -1 │
    │                 -1 │
    │                 -1 │
    └────────────────────┘
    """
    if end is not None:
        raise NotImplementedError("`end` parameter is not yet implemented")
    return ops.StringFind(self, substr, start, end).to_expr()

find_in_set(str_list)

Find the first occurrence of str_list within a list of strings.

No string in str_list can have a comma.

Parameters:

Name Type Description Default
str_list Sequence[str]

Sequence of strings

required

Returns:

Type Description
IntegerValue

Position of str_list in self. Returns -1 if self isn't found or if self contains ','.

Examples:

>>> import ibis
>>> table = ibis.table(dict(string_col='string'))
>>> result = table.string_col.find_in_set(['a', 'b'])
Source code in ibis/expr/types/strings.py
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
def find_in_set(self, str_list: Sequence[str]) -> ir.IntegerValue:
    """Find the first occurrence of `str_list` within a list of strings.

    No string in `str_list` can have a comma.

    Parameters
    ----------
    str_list
        Sequence of strings

    Returns
    -------
    IntegerValue
        Position of `str_list` in `self`. Returns -1 if `self` isn't found
        or if `self` contains `','`.

    Examples
    --------
    >>> import ibis
    >>> table = ibis.table(dict(string_col='string'))
    >>> result = table.string_col.find_in_set(['a', 'b'])
    """
    return ops.FindInSet(self, str_list).to_expr()

fragment()

Parse a URL and extract fragment identifier.

Examples:

>>> import ibis
>>> url = ibis.literal("https://example.com:80/docs/#DOWNLOADING")
>>> result = url.fragment()  # DOWNLOADING

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
def fragment(self):
    """Parse a URL and extract fragment identifier.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://example.com:80/docs/#DOWNLOADING")
    >>> result = url.fragment()  # DOWNLOADING

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractFragment(self).to_expr()

hashbytes(how='sha256')

Compute the binary hash value of the input.

Parameters:

Name Type Description Default
how Literal['md5', 'sha1', 'sha256', 'sha512']

Hash algorithm to use

'sha256'

Returns:

Type Description
BinaryValue

Binary expression

Source code in ibis/expr/types/strings.py
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
def hashbytes(
    self,
    how: Literal["md5", "sha1", "sha256", "sha512"] = "sha256",
) -> ir.BinaryValue:
    """Compute the binary hash value of the input.

    Parameters
    ----------
    how
        Hash algorithm to use

    Returns
    -------
    BinaryValue
        Binary expression
    """
    return ops.HashBytes(self, how).to_expr()

host()

Parse a URL and extract host.

Examples:

>>> import ibis
>>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
>>> result = url.host()  # example.com

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
def host(self):
    """Parse a URL and extract host.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
    >>> result = url.host()  # example.com

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractHost(self).to_expr()

ilike(patterns)

Match patterns against self, case-insensitive.

This function is modeled after SQL's ILIKE directive. Use % as a multiple-character wildcard or _ as a single-character wildcard.

Use re_search or rlike for regular expression-based matching.

Parameters:

Name Type Description Default
patterns str | StringValue | Iterable[str | StringValue]

If pattern is a list, then if any pattern matches the input then the corresponding row in the output is True.

required

Returns:

Type Description
BooleanValue

Column indicating matches

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
>>> t.s.ilike("%PROJect")
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringSQLILike(s, '%PROJect') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean                       │
├───────────────────────────────┤
│ True                          │
│ False                         │
└───────────────────────────────┘
Source code in ibis/expr/types/strings.py
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
def ilike(
    self,
    patterns: str | StringValue | Iterable[str | StringValue],
) -> ir.BooleanValue:
    """Match `patterns` against `self`, case-insensitive.

    This function is modeled after SQL's `ILIKE` directive. Use `%` as a
    multiple-character wildcard or `_` as a single-character wildcard.

    Use `re_search` or `rlike` for regular expression-based matching.

    Parameters
    ----------
    patterns
        If `pattern` is a list, then if any pattern matches the input then
        the corresponding row in the output is `True`.

    Returns
    -------
    BooleanValue
        Column indicating matches

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
    >>> t.s.ilike("%PROJect")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringSQLILike(s, '%PROJect') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean                       │
    ├───────────────────────────────┤
    │ True                          │
    │ False                         │
    └───────────────────────────────┘
    """
    return functools.reduce(
        operator.or_,
        (
            ops.StringSQLILike(self, pattern).to_expr()
            for pattern in util.promote_list(patterns)
        ),
    )

join(strings)

Join a list of strings using self as the separator.

Parameters:

Name Type Description Default
strings Sequence[str | StringValue] | ir.ArrayValue

Strings to join with arg

required

Returns:

Type Description
StringValue

Joined string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"arr": [["a", "b", "c"], None, [], ["b", None]]})
>>> t
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ arr                  ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ array<string>        │
├──────────────────────┤
│ ['a', 'b', ... +1]   │
│ NULL                 │
│ []                   │
│ ['b', None]          │
└──────────────────────┘
>>> ibis.literal("|").join(t.arr)
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ ArrayStringJoin('|', arr) ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ string                    │
├───────────────────────────┤
│ a|b|c                     │
│ NULL                      │
│ NULL                      │
│ b                         │
└───────────────────────────┘
See Also

ArrayValue.join

Source code in ibis/expr/types/strings.py
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
def join(self, strings: Sequence[str | StringValue] | ir.ArrayValue) -> StringValue:
    """Join a list of strings using `self` as the separator.

    Parameters
    ----------
    strings
        Strings to join with `arg`

    Returns
    -------
    StringValue
        Joined string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"arr": [["a", "b", "c"], None, [], ["b", None]]})
    >>> t
    ┏━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ arr                  ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━┩
    │ array<string>        │
    ├──────────────────────┤
    │ ['a', 'b', ... +1]   │
    │ NULL                 │
    │ []                   │
    │ ['b', None]          │
    └──────────────────────┘
    >>> ibis.literal("|").join(t.arr)
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ ArrayStringJoin('|', arr) ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ string                    │
    ├───────────────────────────┤
    │ a|b|c                     │
    │ NULL                      │
    │ NULL                      │
    │ b                         │
    └───────────────────────────┘

    See Also
    --------
    [`ArrayValue.join`][ibis.expr.types.arrays.ArrayValue.join]
    """
    import ibis.expr.types as ir

    if isinstance(strings, ir.ArrayValue):
        cls = ops.ArrayStringJoin
    else:
        cls = ops.StringJoin
    return cls(self, strings).to_expr()

left(nchars)

Return the nchars left-most characters.

Parameters:

Name Type Description Default
nchars int | ir.IntegerValue

Maximum number of characters to return

required

Returns:

Type Description
StringValue

Characters from the start

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
>>> t.s.left(2)
┏━━━━━━━━━━━━━━━━━━━━┓
┃ Substring(s, 0, 2) ┃
┡━━━━━━━━━━━━━━━━━━━━┩
│ string             │
├────────────────────┤
│ ab                 │
│ de                 │
│ hi                 │
└────────────────────┘
Source code in ibis/expr/types/strings.py
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
def left(self, nchars: int | ir.IntegerValue) -> StringValue:
    """Return the `nchars` left-most characters.

    Parameters
    ----------
    nchars
        Maximum number of characters to return

    Returns
    -------
    StringValue
        Characters from the start

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
    >>> t.s.left(2)
    ┏━━━━━━━━━━━━━━━━━━━━┓
    ┃ Substring(s, 0, 2) ┃
    ┡━━━━━━━━━━━━━━━━━━━━┩
    │ string             │
    ├────────────────────┤
    │ ab                 │
    │ de                 │
    │ hi                 │
    └────────────────────┘
    """
    return self.substr(0, length=nchars)

length()

Compute the length of a string.

Returns:

Type Description
IntegerValue

The length of each string in the expression

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["aaa", "a", "aa"]})
>>> t.s.length()
┏━━━━━━━━━━━━━━━━━┓
┃ StringLength(s) ┃
┡━━━━━━━━━━━━━━━━━┩
│ int32           │
├─────────────────┤
│               3 │
│               1 │
│               2 │
└─────────────────┘
Source code in ibis/expr/types/strings.py
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
def length(self) -> ir.IntegerValue:
    """Compute the length of a string.

    Returns
    -------
    IntegerValue
        The length of each string in the expression

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["aaa", "a", "aa"]})
    >>> t.s.length()
    ┏━━━━━━━━━━━━━━━━━┓
    ┃ StringLength(s) ┃
    ┡━━━━━━━━━━━━━━━━━┩
    │ int32           │
    ├─────────────────┤
    │               3 │
    │               1 │
    │               2 │
    └─────────────────┘
    """
    return ops.StringLength(self).to_expr()

like(patterns)

Match patterns against self, case-sensitive.

This function is modeled after the SQL LIKE directive. Use % as a multiple-character wildcard or _ as a single-character wildcard.

Use re_search or rlike for regular expression-based matching.

Parameters:

Name Type Description Default
patterns str | StringValue | Iterable[str | StringValue]

If pattern is a list, then if any pattern matches the input then the corresponding row in the output is True.

required

Returns:

Type Description
BooleanValue

Column indicating matches

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
>>> t.s.like("%project")
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringSQLLike(s, '%project') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean                      │
├──────────────────────────────┤
│ True                         │
│ False                        │
└──────────────────────────────┘
Source code in ibis/expr/types/strings.py
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
def like(
    self,
    patterns: str | StringValue | Iterable[str | StringValue],
) -> ir.BooleanValue:
    """Match `patterns` against `self`, case-sensitive.

    This function is modeled after the SQL `LIKE` directive. Use `%` as a
    multiple-character wildcard or `_` as a single-character wildcard.

    Use `re_search` or `rlike` for regular expression-based matching.

    Parameters
    ----------
    patterns
        If `pattern` is a list, then if any pattern matches the input then
        the corresponding row in the output is `True`.

    Returns
    -------
    BooleanValue
        Column indicating matches

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
    >>> t.s.like("%project")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringSQLLike(s, '%project') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean                      │
    ├──────────────────────────────┤
    │ True                         │
    │ False                        │
    └──────────────────────────────┘
    """
    return functools.reduce(
        operator.or_,
        (
            ops.StringSQLLike(self, pattern).to_expr()
            for pattern in util.promote_list(patterns)
        ),
    )

lower()

Convert string to all lowercase.

Returns:

Type Description
StringValue

Lowercase string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["AAA", "a", "AA"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ AAA    │
│ a      │
│ AA     │
└────────┘
>>> t.s.lower()
┏━━━━━━━━━━━━━━┓
┃ Lowercase(s) ┃
┡━━━━━━━━━━━━━━┩
│ string       │
├──────────────┤
│ aaa          │
│ a            │
│ aa           │
└──────────────┘
Source code in ibis/expr/types/strings.py
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
def lower(self) -> StringValue:
    """Convert string to all lowercase.

    Returns
    -------
    StringValue
        Lowercase string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["AAA", "a", "AA"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ AAA    │
    │ a      │
    │ AA     │
    └────────┘
    >>> t.s.lower()
    ┏━━━━━━━━━━━━━━┓
    ┃ Lowercase(s) ┃
    ┡━━━━━━━━━━━━━━┩
    │ string       │
    ├──────────────┤
    │ aaa          │
    │ a            │
    │ aa           │
    └──────────────┘
    """
    return ops.Lowercase(self).to_expr()

lpad(length, pad=' ')

Pad arg by truncating on the right or padding on the left.

Parameters:

Name Type Description Default
length int | ir.IntegerValue

Length of output string

required
pad str | StringValue

Pad character

' '

Returns:

Type Description
StringValue

Left-padded string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
>>> t.s.lpad(5, "-")
┏━━━━━━━━━━━━━━━━━┓
┃ LPad(s, 5, '-') ┃
┡━━━━━━━━━━━━━━━━━┩
│ string          │
├─────────────────┤
│ --abc           │
│ --def           │
│ -ghij           │
└─────────────────┘
Source code in ibis/expr/types/strings.py
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
def lpad(
    self,
    length: int | ir.IntegerValue,
    pad: str | StringValue = " ",
) -> StringValue:
    """Pad `arg` by truncating on the right or padding on the left.

    Parameters
    ----------
    length
        Length of output string
    pad
        Pad character

    Returns
    -------
    StringValue
        Left-padded string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
    >>> t.s.lpad(5, "-")
    ┏━━━━━━━━━━━━━━━━━┓
    ┃ LPad(s, 5, '-') ┃
    ┡━━━━━━━━━━━━━━━━━┩
    │ string          │
    ├─────────────────┤
    │ --abc           │
    │ --def           │
    │ -ghij           │
    └─────────────────┘
    """
    return ops.LPad(self, length, pad).to_expr()

lstrip()

Remove whitespace from the left side of string.

Returns:

Type Description
StringValue

Left-stripped string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ \ta\t  │
│ \nb\n  │
│ \vc\t  │
└────────┘
>>> t.s.lstrip()
┏━━━━━━━━━━━┓
┃ LStrip(s) ┃
┡━━━━━━━━━━━┩
│ string    │
├───────────┤
│ a\t       │
│ b\n       │
│ c\t       │
└───────────┘
Source code in ibis/expr/types/strings.py
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
def lstrip(self) -> StringValue:
    r"""Remove whitespace from the left side of string.

    Returns
    -------
    StringValue
        Left-stripped string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ \ta\t  │
    │ \nb\n  │
    │ \vc\t  │
    └────────┘
    >>> t.s.lstrip()
    ┏━━━━━━━━━━━┓
    ┃ LStrip(s) ┃
    ┡━━━━━━━━━━━┩
    │ string    │
    ├───────────┤
    │ a\t       │
    │ b\n       │
    │ c\t       │
    └───────────┘
    """
    return ops.LStrip(self).to_expr()

path()

Parse a URL and extract path.

Examples:

>>> import ibis
>>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
>>> result = url.path()  # docs/books/tutorial/index.html

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
def path(self):
    """Parse a URL and extract path.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
    >>> result = url.path()  # docs/books/tutorial/index.html

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractPath(self).to_expr()

protocol()

Parse a URL and extract protocol.

Examples:

>>> import ibis
>>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
>>> result = url.protocol()  # https

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
def protocol(self):
    """Parse a URL and extract protocol.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
    >>> result = url.protocol()  # https

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractProtocol(self).to_expr()

query(key=None)

Parse a URL and returns query strring or query string parameter.

If key is passed, return the value of the query string parameter named. If key is absent, return the query string.

Parameters:

Name Type Description Default
key str | StringValue | None

Query component to extract

None

Examples:

>>> import ibis
>>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
>>> result = url.query()  # name=networking
>>> query_name = url.query('name')  # networking

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
def query(self, key: str | StringValue | None = None):
    """Parse a URL and returns query strring or query string parameter.

    If key is passed, return the value of the query string parameter named.
    If key is absent, return the query string.

    Parameters
    ----------
    key
        Query component to extract

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://example.com:80/docs/books/tutorial/index.html?name=networking")
    >>> result = url.query()  # name=networking
    >>> query_name = url.query('name')  # networking

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractQuery(self, key).to_expr()

re_extract(pattern, index)

Return the specified match at index from a regex pattern.

Parameters:

Name Type Description Default
pattern str | StringValue

Regular expression pattern string

required
index int | ir.IntegerValue

The index of the match group to return.

The behavior of this function follows the behavior of Python's match objects: when index is zero and there's a match, return the entire match, otherwise return the content of the index-th match group.

required

Returns:

Type Description
StringValue

Extracted match or whole string if index is zero

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})

Extract a specific group

>>> t.s.re_extract(r"^(a)bc", 1)
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ RegexExtract(s, '^(a)bc', 1) ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ string                       │
├──────────────────────────────┤
│ a                            │
│ ~                            │
│ ~                            │
└──────────────────────────────┘

Extract the entire match

>>> t.s.re_extract(r"^(a)bc", 0)
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ RegexExtract(s, '^(a)bc', 0) ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ string                       │
├──────────────────────────────┤
│ abc                          │
│ ~                            │
│ ~                            │
└──────────────────────────────┘
Source code in ibis/expr/types/strings.py
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
@util.backend_sensitive(
    why="Different backends support different regular expression syntax."
)
def re_extract(
    self,
    pattern: str | StringValue,
    index: int | ir.IntegerValue,
) -> StringValue:
    """Return the specified match at `index` from a regex `pattern`.

    Parameters
    ----------
    pattern
        Regular expression pattern string
    index
        The index of the match group to return.

        The behavior of this function follows the behavior of Python's
        [`match objects`](https://docs.python.org/3/library/re.html#match-objects):
        when `index` is zero and there's a match, return the entire match,
        otherwise return the content of the `index`-th match group.

    Returns
    -------
    StringValue
        Extracted match or whole string if `index` is zero

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})

    Extract a specific group

    >>> t.s.re_extract(r"^(a)bc", 1)
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ RegexExtract(s, '^(a)bc', 1) ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ string                       │
    ├──────────────────────────────┤
    │ a                            │
    │ ~                            │
    │ ~                            │
    └──────────────────────────────┘

    Extract the entire match

    >>> t.s.re_extract(r"^(a)bc", 0)
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ RegexExtract(s, '^(a)bc', 0) ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ string                       │
    ├──────────────────────────────┤
    │ abc                          │
    │ ~                            │
    │ ~                            │
    └──────────────────────────────┘
    """
    return ops.RegexExtract(self, pattern, index).to_expr()

re_replace(pattern, replacement)

Replace match found by regex pattern with replacement.

Parameters:

Name Type Description Default
pattern str | StringValue

Regular expression string

required
replacement str | StringValue

Replacement string or regular expression

required

Returns:

Type Description
StringValue

Modified string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
>>> t.s.re_replace("^(a)", "b")
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ RegexReplace(s, '^(a)', 'b') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ string                       │
├──────────────────────────────┤
│ bbc                          │
│ bac                          │
│ bca                          │
└──────────────────────────────┘
Source code in ibis/expr/types/strings.py
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
@util.backend_sensitive(
    why="Different backends support different regular expression syntax."
)
def re_replace(
    self,
    pattern: str | StringValue,
    replacement: str | StringValue,
) -> StringValue:
    r"""Replace match found by regex `pattern` with `replacement`.

    Parameters
    ----------
    pattern
        Regular expression string
    replacement
        Replacement string or regular expression

    Returns
    -------
    StringValue
        Modified string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
    >>> t.s.re_replace("^(a)", "b")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ RegexReplace(s, '^(a)', 'b') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ string                       │
    ├──────────────────────────────┤
    │ bbc                          │
    │ bac                          │
    │ bca                          │
    └──────────────────────────────┘
    """
    return ops.RegexReplace(self, pattern, replacement).to_expr()

Return whether the values match pattern.

Returns True if the regex matches a string and False otherwise.

Parameters:

Name Type Description Default
pattern str | StringValue

Regular expression use for searching

required

Returns:

Type Description
BooleanValue

Indicator of matches

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
>>> t.s.re_search(".+Hub")
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ RegexSearch(s, '.+Hub') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean                 │
├─────────────────────────┤
│ False                   │
│ True                    │
└─────────────────────────┘
Source code in ibis/expr/types/strings.py
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
@util.backend_sensitive(
    why="Different backends support different regular expression syntax."
)
def re_search(self, pattern: str | StringValue) -> ir.BooleanValue:
    """Return whether the values match `pattern`.

    Returns `True` if the regex matches a string and `False` otherwise.

    Parameters
    ----------
    pattern
        Regular expression use for searching

    Returns
    -------
    BooleanValue
        Indicator of matches

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
    >>> t.s.re_search(".+Hub")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ RegexSearch(s, '.+Hub') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean                 │
    ├─────────────────────────┤
    │ False                   │
    │ True                    │
    └─────────────────────────┘
    """
    return ops.RegexSearch(self, pattern).to_expr()

repeat(n)

Repeat a string n times.

Parameters:

Name Type Description Default
n int | ir.IntegerValue

Number of repetitions

required

Returns:

Type Description
StringValue

Repeated string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["a", "bb", "c"]})
>>> t.s.repeat(5)
┏━━━━━━━━━━━━━━┓
┃ Repeat(s, 5) ┃
┡━━━━━━━━━━━━━━┩
│ string       │
├──────────────┤
│ aaaaa        │
│ bbbbbbbbbb   │
│ ccccc        │
└──────────────┘
Source code in ibis/expr/types/strings.py
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
def repeat(self, n: int | ir.IntegerValue) -> StringValue:
    """Repeat a string `n` times.

    Parameters
    ----------
    n
        Number of repetitions

    Returns
    -------
    StringValue
        Repeated string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["a", "bb", "c"]})
    >>> t.s.repeat(5)
    ┏━━━━━━━━━━━━━━┓
    ┃ Repeat(s, 5) ┃
    ┡━━━━━━━━━━━━━━┩
    │ string       │
    ├──────────────┤
    │ aaaaa        │
    │ bbbbbbbbbb   │
    │ ccccc        │
    └──────────────┘
    """
    return ops.Repeat(self, n).to_expr()

replace(pattern, replacement)

Replace each exact match of pattern with replacement.

Parameters:

Name Type Description Default
pattern StringValue

String pattern

required
replacement StringValue

String replacement

required

Returns:

Type Description
StringValue

Replaced string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
>>> t.s.replace("b", "z")
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringReplace(s, 'b', 'z') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ string                     │
├────────────────────────────┤
│ azc                        │
│ zac                        │
│ zca                        │
└────────────────────────────┘
Source code in ibis/expr/types/strings.py
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
def replace(
    self,
    pattern: StringValue,
    replacement: StringValue,
) -> StringValue:
    """Replace each exact match of `pattern` with `replacement`.

    Parameters
    ----------
    pattern
        String pattern
    replacement
        String replacement

    Returns
    -------
    StringValue
        Replaced string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "bac", "bca"]})
    >>> t.s.replace("b", "z")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringReplace(s, 'b', 'z') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ string                     │
    ├────────────────────────────┤
    │ azc                        │
    │ zac                        │
    │ zca                        │
    └────────────────────────────┘
    """
    return ops.StringReplace(self, pattern, replacement).to_expr()

reverse()

Reverse the characters of a string.

Returns:

Type Description
StringValue

Reversed string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ abc    │
│ def    │
│ ghi    │
└────────┘
>>> t.s.reverse()
┏━━━━━━━━━━━━┓
┃ Reverse(s) ┃
┡━━━━━━━━━━━━┩
│ string     │
├────────────┤
│ cba        │
│ fed        │
│ ihg        │
└────────────┘
Source code in ibis/expr/types/strings.py
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
def reverse(self) -> StringValue:
    """Reverse the characters of a string.

    Returns
    -------
    StringValue
        Reversed string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "def", "ghi"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ abc    │
    │ def    │
    │ ghi    │
    └────────┘
    >>> t.s.reverse()
    ┏━━━━━━━━━━━━┓
    ┃ Reverse(s) ┃
    ┡━━━━━━━━━━━━┩
    │ string     │
    ├────────────┤
    │ cba        │
    │ fed        │
    │ ihg        │
    └────────────┘
    """
    return ops.Reverse(self).to_expr()

right(nchars)

Return up to nchars from the end of each string.

Parameters:

Name Type Description Default
nchars int | ir.IntegerValue

Maximum number of characters to return

required

Returns:

Type Description
StringValue

Characters from the end

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
>>> t.s.right(2)
┏━━━━━━━━━━━━━━━━┓
┃ StrRight(s, 2) ┃
┡━━━━━━━━━━━━━━━━┩
│ string         │
├────────────────┤
│ bc             │
│ fg             │
│ lk             │
└────────────────┘
Source code in ibis/expr/types/strings.py
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
def right(self, nchars: int | ir.IntegerValue) -> StringValue:
    """Return up to `nchars` from the end of each string.

    Parameters
    ----------
    nchars
        Maximum number of characters to return

    Returns
    -------
    StringValue
        Characters from the end

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
    >>> t.s.right(2)
    ┏━━━━━━━━━━━━━━━━┓
    ┃ StrRight(s, 2) ┃
    ┡━━━━━━━━━━━━━━━━┩
    │ string         │
    ├────────────────┤
    │ bc             │
    │ fg             │
    │ lk             │
    └────────────────┘
    """
    return ops.StrRight(self, nchars).to_expr()

rpad(length, pad=' ')

Pad self by truncating or padding on the right.

Parameters:

Name Type Description Default
self

String to pad

required
length int | ir.IntegerValue

Length of output string

required
pad str | StringValue

Pad character

' '

Returns:

Type Description
StringValue

Right-padded string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
>>> t.s.rpad(5, "-")
┏━━━━━━━━━━━━━━━━━┓
┃ RPad(s, 5, '-') ┃
┡━━━━━━━━━━━━━━━━━┩
│ string          │
├─────────────────┤
│ abc--           │
│ def--           │
│ ghij-           │
└─────────────────┘
Source code in ibis/expr/types/strings.py
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
def rpad(
    self,
    length: int | ir.IntegerValue,
    pad: str | StringValue = " ",
) -> StringValue:
    """Pad `self` by truncating or padding on the right.

    Parameters
    ----------
    self
        String to pad
    length
        Length of output string
    pad
        Pad character

    Returns
    -------
    StringValue
        Right-padded string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "def", "ghij"]})
    >>> t.s.rpad(5, "-")
    ┏━━━━━━━━━━━━━━━━━┓
    ┃ RPad(s, 5, '-') ┃
    ┡━━━━━━━━━━━━━━━━━┩
    │ string          │
    ├─────────────────┤
    │ abc--           │
    │ def--           │
    │ ghij-           │
    └─────────────────┘
    """
    return ops.RPad(self, length, pad).to_expr()

rstrip()

Remove whitespace from the right side of string.

Returns:

Type Description
StringValue

Right-stripped string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ \ta\t  │
│ \nb\n  │
│ \vc\t  │
└────────┘
>>> t.s.rstrip()
┏━━━━━━━━━━━┓
┃ RStrip(s) ┃
┡━━━━━━━━━━━┩
│ string    │
├───────────┤
│ \ta       │
│ \nb       │
│ \vc       │
└───────────┘
Source code in ibis/expr/types/strings.py
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
def rstrip(self) -> StringValue:
    r"""Remove whitespace from the right side of string.

    Returns
    -------
    StringValue
        Right-stripped string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ \ta\t  │
    │ \nb\n  │
    │ \vc\t  │
    └────────┘
    >>> t.s.rstrip()
    ┏━━━━━━━━━━━┓
    ┃ RStrip(s) ┃
    ┡━━━━━━━━━━━┩
    │ string    │
    ├───────────┤
    │ \ta       │
    │ \nb       │
    │ \vc       │
    └───────────┘
    """
    return ops.RStrip(self).to_expr()

split(delimiter)

Split as string on delimiter.

This API only works on backends with array support.

Parameters:

Name Type Description Default
delimiter str | StringValue

Value to split by

required

Returns:

Type Description
ArrayValue

The string split by delimiter

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"col": ["a,b,c", "d,e", "f"]})
>>> t
┏━━━━━━━━┓
┃ col    ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ a,b,c  │
│ d,e    │
│ f      │
└────────┘
>>> t.col.split(",")
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringSplit(col, ',') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ array<string>         │
├───────────────────────┤
│ ['a', 'b', ... +1]    │
│ ['d', 'e']            │
│ ['f']                 │
└───────────────────────┘
Source code in ibis/expr/types/strings.py
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
def split(self, delimiter: str | StringValue) -> ir.ArrayValue:
    """Split as string on `delimiter`.

    !!! note "This API only works on backends with array support."

    Parameters
    ----------
    delimiter
        Value to split by

    Returns
    -------
    ArrayValue
        The string split by `delimiter`

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"col": ["a,b,c", "d,e", "f"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ col    ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ a,b,c  │
    │ d,e    │
    │ f      │
    └────────┘
    >>> t.col.split(",")
    ┏━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringSplit(col, ',') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━┩
    │ array<string>         │
    ├───────────────────────┤
    │ ['a', 'b', ... +1]    │
    │ ['d', 'e']            │
    │ ['f']                 │
    └───────────────────────┘
    """
    return ops.StringSplit(self, delimiter).to_expr()

startswith(start)

Determine whether self starts with end.

Parameters:

Name Type Description Default
start str | StringValue

prefix to check for

required

Returns:

Type Description
BooleanValue

Boolean indicating whether self starts with start

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
>>> t.s.startswith("Ibis")
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StartsWith(s, 'Ibis') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ boolean               │
├───────────────────────┤
│ True                  │
│ False                 │
└───────────────────────┘
Source code in ibis/expr/types/strings.py
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
def startswith(self, start: str | StringValue) -> ir.BooleanValue:
    """Determine whether `self` starts with `end`.

    Parameters
    ----------
    start
        prefix to check for

    Returns
    -------
    BooleanValue
        Boolean indicating whether `self` starts with `start`

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["Ibis project", "GitHub"]})
    >>> t.s.startswith("Ibis")
    ┏━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StartsWith(s, 'Ibis') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━┩
    │ boolean               │
    ├───────────────────────┤
    │ True                  │
    │ False                 │
    └───────────────────────┘
    """
    return ops.StartsWith(self, start).to_expr()

strip()

Remove whitespace from left and right sides of a string.

Returns:

Type Description
StringValue

Stripped string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ \ta\t  │
│ \nb\n  │
│ \vc\t  │
└────────┘
>>> t.s.strip()
┏━━━━━━━━━━┓
┃ Strip(s) ┃
┡━━━━━━━━━━┩
│ string   │
├──────────┤
│ a        │
│ b        │
│ c        │
└──────────┘
Source code in ibis/expr/types/strings.py
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
def strip(self) -> StringValue:
    r"""Remove whitespace from left and right sides of a string.

    Returns
    -------
    StringValue
        Stripped string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["\ta\t", "\nb\n", "\vc\t"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ \ta\t  │
    │ \nb\n  │
    │ \vc\t  │
    └────────┘
    >>> t.s.strip()
    ┏━━━━━━━━━━┓
    ┃ Strip(s) ┃
    ┡━━━━━━━━━━┩
    │ string   │
    ├──────────┤
    │ a        │
    │ b        │
    │ c        │
    └──────────┘
    """
    return ops.Strip(self).to_expr()

substr(start, length=None)

Extract a substring.

Parameters:

Name Type Description Default
start int | ir.IntegerValue

First character to start splitting, indices start at 0

required
length int | ir.IntegerValue | None

Maximum length of each substring. If not supplied, searches the entire string

None

Returns:

Type Description
StringValue

Found substring

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
>>> t.s.substr(2)
┏━━━━━━━━━━━━━━━━━┓
┃ Substring(s, 2) ┃
┡━━━━━━━━━━━━━━━━━┩
│ string          │
├─────────────────┤
│ c               │
│ fg              │
│ jlk             │
└─────────────────┘
Source code in ibis/expr/types/strings.py
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
def substr(
    self,
    start: int | ir.IntegerValue,
    length: int | ir.IntegerValue | None = None,
) -> StringValue:
    """Extract a substring.

    Parameters
    ----------
    start
        First character to start splitting, indices start at 0
    length
        Maximum length of each substring. If not supplied, searches the
        entire string

    Returns
    -------
    StringValue
        Found substring

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["abc", "defg", "hijlk"]})
    >>> t.s.substr(2)
    ┏━━━━━━━━━━━━━━━━━┓
    ┃ Substring(s, 2) ┃
    ┡━━━━━━━━━━━━━━━━━┩
    │ string          │
    ├─────────────────┤
    │ c               │
    │ fg              │
    │ jlk             │
    └─────────────────┘
    """
    return ops.Substring(self, start, length).to_expr()

to_timestamp(format_str)

Parse a string and return a timestamp.

Parameters:

Name Type Description Default
format_str str

Format string in strptime format

required

Returns:

Type Description
TimestampValue

Parsed timestamp value

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"ts": ["20170206"]})
>>> t.ts.to_timestamp("%Y%m%d")
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ StringToTimestamp(ts, '%Y%m%d') ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ timestamp('UTC')                │
├─────────────────────────────────┤
│ 2017-02-06 00:00:00+00:00       │
└─────────────────────────────────┘
Source code in ibis/expr/types/strings.py
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
def to_timestamp(self, format_str: str) -> ir.TimestampValue:
    """Parse a string and return a timestamp.

    Parameters
    ----------
    format_str
        Format string in `strptime` format

    Returns
    -------
    TimestampValue
        Parsed timestamp value

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"ts": ["20170206"]})
    >>> t.ts.to_timestamp("%Y%m%d")
    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
    ┃ StringToTimestamp(ts, '%Y%m%d') ┃
    ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
    │ timestamp('UTC')                │
    ├─────────────────────────────────┤
    │ 2017-02-06 00:00:00+00:00       │
    └─────────────────────────────────┘
    """
    return ops.StringToTimestamp(self, format_str).to_expr()

translate(from_str, to_str)

Replace from_str characters in self characters in to_str.

To avoid unexpected behavior, from_str should be shorter than to_str.

Parameters:

Name Type Description Default
from_str StringValue

Characters in arg to replace

required
to_str StringValue

Characters to use for replacement

required

Returns:

Type Description
StringValue

Translated string

Examples:

>>> import ibis
>>> table = ibis.table(dict(string_col='string'))
>>> result = table.string_col.translate('a', 'b')
Source code in ibis/expr/types/strings.py
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
def translate(self, from_str: StringValue, to_str: StringValue) -> StringValue:
    """Replace `from_str` characters in `self` characters in `to_str`.

    To avoid unexpected behavior, `from_str` should be shorter than
    `to_str`.

    Parameters
    ----------
    from_str
        Characters in `arg` to replace
    to_str
        Characters to use for replacement

    Returns
    -------
    StringValue
        Translated string

    Examples
    --------
    >>> import ibis
    >>> table = ibis.table(dict(string_col='string'))
    >>> result = table.string_col.translate('a', 'b')
    """
    return ops.Translate(self, from_str, to_str).to_expr()

upper()

Convert string to all uppercase.

Returns:

Type Description
StringValue

Uppercase string

Examples:

>>> import ibis
>>> ibis.options.interactive = True
>>> t = ibis.memtable({"s": ["aaa", "A", "aa"]})
>>> t
┏━━━━━━━━┓
┃ s      ┃
┡━━━━━━━━┩
│ string │
├────────┤
│ aaa    │
│ A      │
│ aa     │
└────────┘
>>> t.s.upper()
┏━━━━━━━━━━━━━━┓
┃ Uppercase(s) ┃
┡━━━━━━━━━━━━━━┩
│ string       │
├──────────────┤
│ AAA          │
│ A            │
│ AA           │
└──────────────┘
Source code in ibis/expr/types/strings.py
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
def upper(self) -> StringValue:
    """Convert string to all uppercase.

    Returns
    -------
    StringValue
        Uppercase string

    Examples
    --------
    >>> import ibis
    >>> ibis.options.interactive = True
    >>> t = ibis.memtable({"s": ["aaa", "A", "aa"]})
    >>> t
    ┏━━━━━━━━┓
    ┃ s      ┃
    ┡━━━━━━━━┩
    │ string │
    ├────────┤
    │ aaa    │
    │ A      │
    │ aa     │
    └────────┘
    >>> t.s.upper()
    ┏━━━━━━━━━━━━━━┓
    ┃ Uppercase(s) ┃
    ┡━━━━━━━━━━━━━━┩
    │ string       │
    ├──────────────┤
    │ AAA          │
    │ A            │
    │ AA           │
    └──────────────┘
    """
    return ops.Uppercase(self).to_expr()

userinfo()

Parse a URL and extract user info.

Examples:

>>> import ibis
>>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
>>> result = url.userinfo()  # user:pass

Returns:

Type Description
StringValue

Extracted string value

Source code in ibis/expr/types/strings.py
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
def userinfo(self):
    """Parse a URL and extract user info.

    Examples
    --------
    >>> import ibis
    >>> url = ibis.literal("https://user:pass@example.com:80/docs/books")
    >>> result = url.userinfo()  # user:pass

    Returns
    -------
    StringValue
        Extracted string value
    """
    return ops.ExtractUserInfo(self).to_expr()

Last update: June 22, 2023