要从文件URI中提取文件名并为其创建链接,可以使用以下方法:
function getFileNameFromURI(uri) {
const lastSlashIndex = uri.lastIndexOf('/');
const fileName = uri.substring(lastSlashIndex + 1);
return fileName;
}
const uri = 'https://example.com/path/to/file.txt';
const fileName = getFileNameFromURI(uri);
const link = `<a href="${uri}">${fileName}</a>`;
from urllib.parse import urlparse
def get_filename_from_uri(uri):
parsed_uri = urlparse(uri)
return parsed_uri.path.split('/')[-1]
uri = 'https://example.com/path/to/file.txt'
filename = get_filename_from_uri(uri)
link = f'<a href="{uri}">{filename}</a>'
这些代码示例将从给定的URI中提取文件名,并创建一个包含文件名的链接。请注意,这些示例不涉及云计算品牌商,因此可以在任何环境中使用。
领取专属 10元无门槛券
手把手带您无忧上云