在perl中按换行符划分数组内容
我想逐行使用数组中存储的内容。
但我无法将其拆分为 '\n'
。 你能指导我吗?
请注意,数组内容来自 SQL 表的 Text
列上的选择查询。
@somearray="SELECT column from table where condition=something" (column type is "Text")
foreach $line(@somearray)
{
if($line=~/match-anything-here/)
{
//The match is done on whole array contents and not line by line
print $line;
}
}
I want to use contents stored in array line by line.
But I am unable to split it on '\n'
.
can you guide me on this.
Note that the array contents is coming from select query on Text
column of SQL table.
@somearray="SELECT column from table where condition=something" (column type is "Text")
foreach $line(@somearray)
{
if($line=~/match-anything-here/)
{
//The match is done on whole array contents and not line by line
print $line;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码可能如下所示:
The code might look like: