Perl:如何分割和剪切给定的字符串?
我有一个看起来像这样的字符串:
$string = "Tags: sweet, yummie, Chocolate, dark"
我想将这些标签插入 Mysql 表中。
那么如何从字符串中删除 [Tags:]?
如何在 Mysql 表中添加 foreach $string?
I have a String that looks like this:
$string = "Tags: sweet, yummie, chocolate, dark"
I want to insert these Tags in a Mysql table.
So how do I cut the [Tags:] out of the string?
And how can I add foreach $string in a Mysql-table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先使用正则表达式删除“Tags:”,然后拆分“,”。
对于 MySQL 连接,您可以使用 DBI::MySQL。
Start by removing the "Tags: " with a regex, and then split on ", ".
For the MySQL connection, you could use DBI::MySQL.
如果您的标签始终以
:
列结尾,你可以做类似的事情:
输出:
If your Tags always end with column
:
,you could do somethong like:
output:
Perl 中有一个
split
函数。There is a
split
function in Perl.