пятница, 17 февраля 2012 г.

regex last \ in path replace with file prefix


            private string GenFileName(string SourceFile)
            {
                // last slash(\) replace with slash and file prifix (\TMP_)
                return Regex.Replace(SourceFile, @"\\(?=[^\\]*$)", @"\TMP_");
            }

Комментариев нет:

Отправить комментарий