如何将这个字符串检查从PHP转换为AS3?

时间:2012-03-22 14:33:26

标签: php string actionscript-3 flash substring

嘿伙计们我不知道如何在AS3中写这个,但基本上我需要对一些字符串进行检查。如果他们的名字前面有BTS或TS,那么就这样做,否则什么都不做。

PHP脚本:

$theid =$this->uri->segment(3);


if(substr($theid,0,3) =='BTS'){
    $theid = str_replace('BTS', 'TS', $theid);
}
$video =  $this->ecx_model->custom_search_small($theid,'any','reference_id');

2 个答案:

答案 0 :(得分:3)

if (!theid.indexOf("BTS")) theid = theid.replace(/BTS/g, "TS");

答案 1 :(得分:1)