使用preg_replace获取文件扩展名

时间:2016-06-10 12:05:55

标签: regex preg-replace

如何使用all_labels_true = tf.reduce_min(tf.cast(correct_prediction), tf.float32), 1) accuracy2 = tf.reduce_mean(all_labels_true) 获取文件的附加信息?解决这个问题的正确if ((_ref = file.previewElement) != null) { //_ref.parentNode.removeChild(file.previewElement); _ref.style.display = "none"; } 是什么?

preg_replace

1 个答案:

答案 0 :(得分:1)

要获取任何文件的扩展名,请使用此正则表达式:

.*?\.(.*)$

Regex101

上运行它

regex可以在preg_replace()

中使用

编辑:

即使链接上有解释,我也会在OP的请求中提出相同的说法:

一个。 .*?懒惰地匹配任何字符(换行符除外)
\.字面匹配字符. C。 (.*)$然后在第一个捕获组中捕获到输入结束的所有内容(由$表示)。