RosettaCodeData/Task/String-matching/Jq/string-matching-4.jq
2017-09-25 22:28:19 +02:00

5 lines
64 B
Text

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