ActionScript 3 从url路径获取文件名并删除扩展名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 从url路径获取文件名并删除扩展名相关的知识,希望对你有一定的参考价值。
private function removeExtAndGetFileName($url:String):String
{
var extRemoved : String = $url.slice($url.lastIndexOf("/")+1,$url.lastIndexOf("."));
return extRemoved;
//trace(removeExtAndGetFileName("http://www.mydomain.com/images/myFilename.jpg"));
// OUTPUT: myFilename
}
以上是关于ActionScript 3 从url路径获取文件名并删除扩展名的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 从完整的URL获取文件名
ActionScript 3 AS3从URL或文件名获取文件扩展名
ActionScript 3 从加载文件URL中提取查询字符串变量
ActionScript 2 加载另一个加载其他文件的 SWF - 相对路径/url 问题
ActionScript 3 从文件夹中获取所有文件
ActionScript 3 获取主机网页的URL