我的值看起来像这样:
D:\DM-250\Insert_Jobs-QA-UAT\14-FILE_A_UpdateInsert.dts
D:\DM-250\Insert_Jobs-QA-UAT\Something_DaisyChain\14-stuff_and_things_UpdateInsert.dts
D:\DM-250\14-another_file.dts
我想要这3个值的结尾,从最后一个"\"
字符开始。
我尝试使用FINDSTRING
,但是我不知道如何获取字符的最后一次出现。
有什么建议吗?
答案 0 :(得分:3)
这将为您提供从右侧开始的位置。
public function create()
{
$courses=Course::all();
return view('Admin.Media.create',compact('courses'));
}
我猜您正在尝试提取文件名:
findstring(reverse([your column]),"\",1)