字符串提取,转换为变量使用

我现在提取到了图片的路径,我现在先提取图片名称部分作为变量使用,我该怎末从这个字符串中提取图片名。

@Ggy1992113
imageName = fullPath.Split("\"c).Last

will return just the image name. It splits the full String by "" and takes the last element which should be just your filename.