Dragosvr92 Posted August 28, 2010 Share Posted August 28, 2010 So i have this script that outputs Listed Files inside a folder echo '<option value="'.$fileName.'">'.$fileName.'</option>';} like this : <option value="Fonts/28 Days Later.ttf">Fonts/28 Days Later.ttf</option> etc files .... i would like to know how may i remove " Fonts/ " And the .ttf extension from the second part that repeats (the name) using something like preg_replace and to make the first letter uppercase using ucfirst() And if someone is familiar with preg_replace could you please give me a tutorial on how it works to replace some text ? Thanks In Advance Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/ Share on other sites More sharing options...
PaulRyan Posted August 28, 2010 Share Posted August 28, 2010 Hello TheKiller. Is using preg_replace important? Personally I would use str_replace as it is faster than preg_replace and test have shown this, just google "preg_replace VS str_replace" If all of the files are going to have the same directory name and extension you can use the following: $neatFileName = str_replace('Fonts/','' $fileName); $neatFileName = str_replace('.ttf','' $neatFileName); echo '<option value="'.$fileName.'">'.$neatFileName.'</option>';} Or if the extensions and the directory name change use the following function function neatFileName($filename) { $neatFileName = explode("/", $filename); $neatFileName = explode(".", $neatFileName[1]); return ucfirst($neatFileName[0]); } echo '<option value="'.$fileName.'">'.neatFileName($fileName).'</option>';} Let me know how these work out for you, if there any help at all Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104675 Share on other sites More sharing options...
Dragosvr92 Posted August 28, 2010 Author Share Posted August 28, 2010 Hi Paul nah... its not needed to use preg_replace.. but i thought thats the only way it can be done all files have the same directory... and your first code looks pretty and simple but you missed to add a dot or a comma in it i arranged it like this ..but sadly its not working <?php $fileListDir = "Fonts/*"; $fileList = glob($fileListDir); $neatFileName = str_replace('Fonts/','' ,$fileName); $neatFileName = str_replace('.ttf','' ,$neatFileName); foreach ($fileList as $fileName) { echo '<option value="'.$fileName.'">'.$neatFileName.'</option>';} ?> your Second script works as it should <?php $fileListDir = "Fonts/*"; $fileList = glob($fileListDir); function neatFileName($filename) { $neatFileName = explode("/", $filename); $neatFileName = explode(".", $neatFileName[1]); return ucfirst($neatFileName[0]); } foreach ($fileList as $fileName) { echo '<option value="'.$fileName.'">'.neatFileName($fileName).'</option>';} ?> Thank You Very much ! but can you figure whats up with the first code ? it looks more simple than this and its shorter.. which would be faster ? Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104685 Share on other sites More sharing options...
PaulRyan Posted August 28, 2010 Share Posted August 28, 2010 The first code won't work as the $neatFieldName variable is being set outside of the foreach statement. I'm not 100% sure which would be faster, but the function is probably better to work with and edit Try the following if you want the first piece of code to work <?php $fileListDir = "Fonts/*"; $fileList = glob($fileListDir); foreach ($fileList as $fileName) { $optionName = $fileName; $neatFileName = str_replace('Fonts/','' ,$fileName); $neatFileName = str_replace('.ttf','' ,$neatFileName); echo '<option value="'.$optionName.'">'.$neatFileName.'</option>'; } ?> If not then stick with the second piece Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104693 Share on other sites More sharing options...
Rifts Posted August 28, 2010 Share Posted August 28, 2010 PaulRyan is my hero Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104695 Share on other sites More sharing options...
Dragosvr92 Posted August 28, 2010 Author Share Posted August 28, 2010 err the script seems to work but it dosnt use the ucfirst.. so i'll stick with the function lol Thank You again Solved edit: PaulRyan is my hero lol... Btw.. could you look at this posts i made to see if you can help? http://www.phpfreaks.com/forums/index.php/topic,308562.msg1457982.html#msg1457982 http://www.phpfreaks.com/forums/index.php/topic,308556.msg1458010.html#msg1458010 Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104696 Share on other sites More sharing options...
PaulRyan Posted August 28, 2010 Share Posted August 28, 2010 PaulRyan is my hero Thanks Rifts Yeah sure I'll have a look for you TheKiller, I'll do my best Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104701 Share on other sites More sharing options...
PaulRyan Posted August 28, 2010 Share Posted August 28, 2010 I noticed the silly mistake I made in the non-function code TheKiller, sorry my bad Look here... <?php $fileListDir = "Fonts/*"; $fileList = glob($fileListDir); foreach ($fileList as $fileName) { $optionName = $fileName; $neatFileName = str_replace('Fonts/','' ,$fileName); $neatFileName = ucfirst(str_replace('.ttf','' ,$neatFileName)); echo '<option value="'.$optionName.'">'.$neatFileName.'</option>'; } ?> Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104702 Share on other sites More sharing options...
Dragosvr92 Posted August 28, 2010 Author Share Posted August 28, 2010 lol ok i think i will use this one then ... Thanks again And Btw... i forgot to wish you Welcome to the board so Welcome ! Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104704 Share on other sites More sharing options...
PaulRyan Posted August 28, 2010 Share Posted August 28, 2010 Glad I could be of assitance buddy Thanks for the Welcome also, my first one! Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104709 Share on other sites More sharing options...
Dragosvr92 Posted August 28, 2010 Author Share Posted August 28, 2010 i just found this page you made... http://frp.pulse-box.com/ the theme looks cool i made some page a month ago or so with colors alike that black grey etc would like to offer a link but its only in my pc atm ... when i think im done it'll be somewhere on this domain lol http://wheresmyip.net/ Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104713 Share on other sites More sharing options...
PaulRyan Posted August 29, 2010 Share Posted August 29, 2010 Ahh yeah that, its for a game I play, just an application that retrieves and displays data Currently adding the rest of the features to it. Yeah I am fond of dark coloured layouts and designs, much more pleasing to the eye in my opinion. Sure thing TheKiller, I'll look forward to it when you've finished. Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104719 Share on other sites More sharing options...
Dragosvr92 Posted August 29, 2010 Author Share Posted August 29, 2010 Yeah I am fond of dark coloured layouts and designs, much more pleasing to the eye in my opinion. thats very true lol heres a link to the Page i was talking about .. its not so great as i am bad on drawing and designing ... but im pleased of it as its the best html page i made lol http://82.137.41.104/IP/ Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104725 Share on other sites More sharing options...
PaulRyan Posted August 29, 2010 Share Posted August 29, 2010 Yeah thats a nice looking site if you ask me Nice functionality also, keep the good work. Thanks, Paul. Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104728 Share on other sites More sharing options...
Dragosvr92 Posted August 29, 2010 Author Share Posted August 29, 2010 Thanks Quote Link to comment https://forums.phpfreaks.com/topic/211966-preg-replace-help/#findComment-1104729 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.