RosettaCodeData/Task/String-matching/Jq/string-matching-4.jq
2023-07-01 13:44:08 -04:00

5 lines
64 B
Text

"abc" | test( "^ab")
"abcd" | test("bc")
"abcd" | test("cd$")