拆分字符串并删除后半部分

时间:2016-08-18 22:09:36

标签: php string replace split

我有一个像这样的字符串:

$variable = "here is<br/>my code";

我想在<br/>之后删除任何内容。我怎么能这样做呢?

2 个答案:

答案 0 :(得分:0)

df <- data.frame(a = c("x", "y", "z"), b = c("m", "n", "l"), c = 1:3, d = 2:4)
df
#   a b c d
# 1 x m 1 2
# 2 y n 2 3
# 3 z l 3 4

df %>% mutate_at(vars(-one_of(c("a", "b"))), funs(.*2))
#   a b c d
# 1 x m 2 4
# 2 y n 4 6
# 3 z l 6 8

输出:

<?php
echo strtok('here is<br/>my code','<') . '<br/>';

请注意,此处的分割位于here is<br/> 字符上,不一定是<

答案 1 :(得分:-1)

试试这个:

    $variable="here is<br/>my code";
    $newVariable=substr($variable, 0, strpos($variable, "<br/>")+5);