正则表达式选择多行字符串中的最后一行

发布于 2024-12-16 20:21:27 字数 429 浏览 0 评论 0原文

我有一个 ANT 脚本,它有一个属性,其值可以是一行或多行,例如 property

prop1=
A_12.1_REL_B121000_10_18_2011.1700
A_12.1_REL_B121001_10_25_2011.6059
A_12.1_REL_B121001_10_25_2011.2201
A_12.1_REL_B121001_10_25_2011.2014

请注意,所有这些行都以 CRLF 结尾,文件结尾也是另一个 CRLF。现在我需要做的就是使用正则表达式选择最后一行。行数可以更少或更多,例如

prop1=
    A_12.1_REL_B121000_10_18_2011.1700  

在第二种情况下,我需要选择这一行。 我搜索了较旧的帖子,但找不到任何具体内容。有什么指点吗?

I have an ANT script which will have a property whose value could be one or more lines e.g.
property

prop1=
A_12.1_REL_B121000_10_18_2011.1700
A_12.1_REL_B121001_10_25_2011.6059
A_12.1_REL_B121001_10_25_2011.2201
A_12.1_REL_B121001_10_25_2011.2014

Please see that all these lines end with a CRLF and end of file is also another CRLF. Now what I need to do is just select the last line using a regex. The number of lines could be less or more e.g

prop1=
    A_12.1_REL_B121000_10_18_2011.1700  

In the second case I need to select this single line .
I have searched older posts, but could not find anything specific. Any pointers ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天气好吗我好吗 2024-12-23 20:21:28

这应该可以做到...

/^.*\z/m

查看实际操作

(假设m是多行模式。)

This should do it...

/^.*\z/m

See it in action.

(assume the m is multi-line mode.)

烂柯人 2024-12-23 20:21:28

如果您使用 ant-contrib

    <loadfile srcFile="input.prop" property="test"/>

    <propertyregex property="result"
                   input="${test}"
                   regexp="(.*$)"
                   select="\1"
    />

    <echo message="Result is : ${result}"/>

这将始终打印输入属性文件的最后一行:

[echo] Result is : A_12.1_REL_B121001_10_25_2011.2014

If you are using ant-contrib :

    <loadfile srcFile="input.prop" property="test"/>

    <propertyregex property="result"
                   input="${test}"
                   regexp="(.*$)"
                   select="\1"
    />

    <echo message="Result is : ${result}"/>

This will always print the last line of your input properties file :

[echo] Result is : A_12.1_REL_B121001_10_25_2011.2014
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文