Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sperlingxx committed Mar 30, 2022
1 parent a04cd79 commit a690fce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration_tests/src/main/python/string_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -780,11 +780,11 @@ def test_regexp_whitespace():
'regexp(a, "[abcd]+\\s+[0-9]+")',
'regexp(a, "\\S{3}")',
'rlike(a, "[abcd]+\\s+\\S{2,3}")',
'regexp_extract(a, "([a-d]*)([0-9\\s]*)([a-d]*)", 2)',
'regexp_extract(a, "([a-d]*)(\\S*)([0-9]*)", 2)',
'regexp_extract(a, "([a-d]*)(\\S*)([0-9]*)", 3)',
'regexp_replace(a, "(\\s*)", "@")',
'regexp_replace(a, "(\\S*)", "#")',
'regexp_extract(a, "([a-d]+)([0-9\\s]+)([a-d]+)", 2)',
'regexp_extract(a, "([a-d]+)(\\S+)([0-9]+)", 2)',
'regexp_extract(a, "([a-d]+)(\\S+)([0-9]+)", 3)',
'regexp_replace(a, "(\\s+)", "@")',
'regexp_replace(a, "(\\S+)", "#")',
),
conf=_regexp_conf)

Expand Down

0 comments on commit a690fce

Please sign in to comment.