Add tags

Add tags to the following comment
サクっとやってみました。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<?php

function remove_comment($str)
{
    return preg_replace('/\/\*.*?(\*\/|$)/', '', $str);
}

echo remove_comment('AAA')."\n";
echo remove_comment('AAA/*BBB*/')."\n";
echo remove_comment('AAA/*BBB')."\n";
echo remove_comment('AAA/*BBB/*CCC*/')."\n";
echo remove_comment('AAA/*BBB/*CCC*/DDD*/EEE')."\n";

Add tags

The input will be splited to tags with space.

Index

Feed

Other

Link

Pathtraq

loading...