gpt4 book ai didi

mysql - 在perl中按换行符划分数组内容

转载 作者:行者123 更新时间:2023-11-29 14:41:45 24 4
gpt4 key购买 nike

我想逐行使用数组中存储的内容。

但我无法在 '\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;
}
}

最佳答案

代码可能如下所示:

@somearray = <"SELECT column from table where condition=something">

foreach $line (@somearray)
{
next unless $line =~ /match-anything-here/;

foreach (split(/\n/, $line))
{
print "line: $_; ";
}
}

关于mysql - 在perl中按换行符划分数组内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7859207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com