Y
Hacker News
new
|
ask
|
show
|
jobs
by
mycl
2083 days ago
I think it was in ed already. The POSIX ed spec says: "Any character other than <space> or <newline> can be used instead of a slash to delimit the RE and the replacement."
1 comments
codesnik
2082 days ago
and, AFAIR, in perl space and enter could be delimiters too! I think I've used it in some perlgolf task which didn't count whitespace.
link
codesnik
2082 days ago
and memory tricked me. Whitespace doesn't work for regex and quoting terminators.
link
kbp
2082 days ago
Works in Ruby:
irb(main):001:1/ puts(%r irb(main):002:1* a+ irb(main):003:0> .match? %q aaa ) true
link