Re: Shared Printer Problem Hardware and Software Microsoft Windows by Bunker Network hiccup, paper jam, or driver glitch - troubleshooting the shared printer quandary demands patience, tech-savvy finesse, and perhaps a dash of printer exorcism. dash commerce starter kit...anyone? Programming Web Development by ricksvoid …. I noticed that there is an existing starter kit called dash commerce that I believe I could adapt for this purpose… dash commerce starter kit...anyone? Digital Media Digital Marketing by ricksvoid …. I noticed that there is an existing starter kit called dash commerce that I believe I could adapt for this purpose… Read line with dash sign Programming Software Development by stopah2008 I would like to read a code like from keyboard that is separated by dash sign using java. 1313-5455-54545-4545 and ingonoring the dash Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by 123468743867143 …][/B] How to replace %20 characters in URL with a dash (-) when the information is coming from a MySQL db? Code… Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by 123468743867143 Thanks for the link. I have been looking at it and tried different things on my site. It is complicated to say the least. I was hoping for a simple PHP code for URL decoding (%20 "or space" to a dash). Need to match product with letters before the dash "-" Programming Web Development by BillyMako … decrement 1 off the stock_level where the letters before a dash match the name in the inventory list. So WHERE "… Preg_replace problem ? space to dash Programming Web Development by phphit … be able to do lower case and replace space with dash. But that would not allow me to fetch data from… Dell Inspiron 5150-blinking dash Hardware and Software Hardware Mobile and Wearables by tigerjo I bought a used it used. They said it needed a hard drive. I got a used one and installed it. It worked for about 3 weeks and now the screen is blank with a blinking dash in the top right corner. I put another hard drive in (not knowing if it worked or not) and I get the same thing. What could it be? Dell Inspiron 5150-blinking dash Hardware and Software Hardware Mobile and Wearables by tigerjo I bought it used. They said it needed a hard drive. I got a used one and installed it. It worked for about 3 weeks and now the screen is blank with a blinking dash in the top right corner. I put another hard drive in (not knowing if it worked or not) and I get the same thing. What could it be? Extract dash from a string Programming Software Development by shena …-03#C I would to extract the middle part without dash which suppose to look like this:355625 I wrote the… Separate characters with dash (-) in Excel 2007? Hardware and Software Microsoft Windows by Leevisse Hi guys, i need a help with separating characters by using dash in excel 2007. Example, Before: 12345678901234567890 After: 1234-5678-9012-3456-7890 Can anyone help me tell me how to do it in excel? I need to split over 5,000 columns with different characters. Thanks! Leevisse Re: Read line with dash sign Programming Software Development by Ezzaral String.split("-") Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by scru [url]http://www.php.net/urldecode[/url] Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by scru [code=php] $str = "%20"; $str2 = urldecode($str); echo $str2; [/code][code] - [/code] Note, some browsers may change - to %20 automatically as long as it's in a link, and there's nothing you can do about it, AFAIK. Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by 123468743867143 You are SOOOOOO right. It is working great in Mozilla but not in IE. THANK YOU so much for your help. One tiny question do you think exchanging %20 with dashes help with SEO? Have a fantastic day. Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by scru [QUOTE=123468743867143;724115]You are SOOOOOO right. It is working great in Mozilla but not in IE. THANK YOU so much for your help. One tiny question do you think exchanging %20 with dashes help with SEO? Have a fantastic day.[/QUOTE] I don't know that much about SEO. Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by Manuz [ICODE] go for str_replace() or str_ireplace()..it may help u out. [/ICODE] Re: Need to match product with letters before the dash "-" Programming Web Development by Will Gresham [code=php] $fullProductId = explode("-", $value) $productId = $fullProductId[0] [/code] Should work Re: Replace %20 characters in URL with a dash (-) | Code is from MySQL Programming Web Development by ~s.o.s~ [QUOTE=123468743867143;724115]One tiny question do you think exchanging %20 with dashes help with SEO? Have a fantastic day.[/QUOTE] Most of the search engines out there treat dashes as spaces when indexing sites/urls. Hence a search for "order of phoenix" might just show you [url]http://somesite.com/order-of-phoenix[/url] but not [url]… Re: Preg_replace problem ? space to dash Programming Web Development by pritaeas Why not use the MySql REPLACE() command in your query: [code] SELECT *, REPLACE(vcity, ' ', '-') AS vcity_replaced FROM table WHERE vcity = '$this->vcity' AND sch_date >= '$this->sch_date' ORDER BY timestmp ASC [/code] It might be possible to do in your htaccess, but that would require a regex that specifically targets each space, am… Re: Preg_replace problem ? space to dash Programming Web Development by phphit [QUOTE=pritaeas;1269952]Why not use the MySql REPLACE() command in your query: [code] SELECT *, REPLACE(vcity, ' ', '-') AS vcity_replaced FROM table WHERE vcity = '$this->vcity' AND sch_date >= '$this->sch_date' ORDER BY timestmp ASC [/code] It might be possible to do in your htaccess, but that would require a regex that … Re: Preg_replace problem ? space to dash Programming Web Development by phphit I don't have more than two spaces in venue (usually only one space). So if htaccess works, i would accept it as of now, if no solution comes. Re: Preg_replace problem ? space to dash Programming Web Development by pritaeas I think this would work for one space: [code] RewriteRule ^venue-([^/ ]*)( ?)([^/ ]*)\.php$ /venue.php?vcity=$1-$3 [L] [/code] I am not sure yet how to fix it for more. Re: Preg_replace problem ? space to dash Programming Web Development by phphit > I am not sure yet how to fix it for more. Ok. Any idea if same can work without htaccess. I am missing just something. (I have sent you PM also) Re: Preg_replace problem ? space to dash Programming Web Development by phphit Solved in other way. Actually no trick worked. But what happen that url still work with "+" sign between two words (or say replace space with +). I would not mind that "+" sign. Re: Extract dash from a string Programming Software Development by AndreRet I don't know if this will help. This is based on the fact that you know where to get the middle part. Let me know if this helped. [CODE]Dim i As Integer, strExtract As String For i = 1 To Len(cbPN.Text) If Mid(cbPN.Text, i, 1) = "-" Or Not IsNumeric(Mid(cbPN.Text, i, 1)) Then 'Clear all dashes AND letters Else … Re: Extract dash from a string Programming Software Development by vb5prgrmr [code] Dim MyArray() As String, MyString As String MyArray = Split("JK-501-3556-25-A-03#C", "-") MyString = MyArray(0) & "-" & MyArray(1) & "-" & MyArray(2) & MyArray(3) & "-" & MyArray(4) & "-" & MyArray(5) MsgBox MyString [/code] Good Luck Re: Extract dash from a string Programming Software Development by shena Hi guys, thanks a lot, those examples really helped a lot in other programs. Re: Separate characters with dash (-) in Excel 2007? Hardware and Software Microsoft Windows by Dilton1958 You may use Mid(function) as below: Suppose your number is in A1, in A2 or the last cell of the row, input formula = Mid(A1,0,4), then on the next cell = (A1,5,4) like that till last digit. Then next cell would contain formula = A2&"-"&A3&"-"&A4&"" etc. If you can send me your emailID i will send a…