Path.GetExtension 获取扩展名

static function GetExtension (path : string) : string

Description描述

Returns the extension component of the specified path string.

返回指定路径字符串的组件扩展名。

The extension returned includes the . character used to separate the extension from the rest of the path.

扩展名返回包含.字符,用于从路径的其余部分分割扩展名。

using System.IO;
using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Debug.Log(Path.GetExtension("/Some/File/At/foo.extension"));
	}
}
//Remember to import IO to make Path work.
//记得导入IO,使路径正常工作
import System.IO;

function Start () {
	//This will print ".extension".
	//这将打印.extension
	Debug.Log(Path.GetExtension("/Some/File/At/foo.extension"));
}
最后修改:2011年3月11日 Friday 11:30

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。