*我无法删除此重复的问题,因为有人已经回答了问题*
我的文件名格式为CustomerInfoDaily.12042014.080043和CustomerInfoDaily.A.12042014.080043我正在尝试使用子字符串获取基本名称(CustomerInfoDaily)和基本后缀(.12042014.080043)。句点数没有限制,但后缀始终为。\ d {8}。\ d {8}
string fn = "CustomerInfoDaily.A.12042014.080043";
string baseFileName = fn.Substring(0, fn.LastIndexOf(".",fn.Length-1,fn.Length));
string baseSuffix = fn.Substring(fn.LastIndexOf(".", 0, 2));
问题是你可以说你想要第一个或最后一个点,但没有说你想要第二个到最后一个点的实例。
非常感谢任何帮助或建议。
答案 0 :(得分:0)
考虑使用theme
:
update_option( 'siteurl', 'https://yourdomain.com' );
update_option( 'home', 'https://yourdomain.com' );