如何解决获取Url的文件名
| 在Flex 3中,我有一个类似的字符串var s:String = \"http://www.abc.com/dump/one.htm#figure1\"
//Want to parse this string and get the filename one.htm
我是Flex的新手,尝试在Google上进行搜索,但未获得任何解决方案。
解决方法
var s:String = \"http://www.abc.com/dump/one.htm#figure1\"
var arr:Array=s.split(\"/\");
var s2:String = arr[arr.length-1];
var s3 = s2.split(\"#\")[0];
var s4 = s3.split(\"?\")[0];
//s4 is the string you need.
//no matter what u try,this code will never break.
试试看,让我们知道。
, 这可能对您有帮助:
http://flashascript.wordpress.com/2010/10/24/parsing-url-string-with-regular-expressions-regexp-in-actionscript-3/
var fileWithExtension:RegExp = /(?<=\\/)(\\w+)((\\.\\w+(?=\\?))|(\\.\\w+)$)/g;
trace(\"file name with extension =\",url.match(fileWithExtension));
// file name with extension = fileName.fileExtension
URI语法:http://en.wikipedia.org/wiki/URI_scheme#Generic_syntax
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。