繁体   English   中英

Clojure:我可以用什么正则表达式来检测多行字符串中一行的最后一个字符?

[英]Clojure: What regular expression can I use to detect the last character of a line in a multi-line string?

我想在Clojure中匹配每行末尾的最后一个字符(多行文本字符串)。 这是一个示例文本:

"Possible values:

copy: A copy of the source item is made at the new location.
move: An item is moved to a new location.
link: A link is established to the source at the new location.
none: The item may not be dropped."

我试过#"\\n"但只匹配一个新行。

使用#"\\n|$" ; \\n匹配除最后一个之外的所有换行符,并且$匹配最后一个换行符。

user=> (print (clojure.string/replace text #"\n|$" "...\n"))
Possible values:...
...
copy: A copy of the source item is made at the new location....
move: An item is moved to a new location....
link: A link is established to the source at the new location....
none: The item may not be dropped....

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM