-
Replied To a Post in C Language help with small programs
What are the specific programs you’re tasked to write? Do you have any code so far? Where are you stuck? -
Began Watching C Language help with small programs
I have a few 3-4 small C programs to write, i missed 2 days because of health and need to catch up, can anyone help? use older methods as scanf, … -
Replied To a Post in What are the challenges of third party API integration?
Wouldn’t that be a problem with choosing the wrong API for the job, as opposed to a difficulty in implementing a particular API? Unless I’m misunderstanding you? -
Replied To a Post in What is the most important step in software development?
> Personally, I think the most important step is getting paid... Does that step come before or after choosing a framework? :) In all seriousness, that could apply to anything … -
Replied To a Post in What are the challenges of third party API integration?
Oh, and second to it would have to be the UI/UX to set up the app. That could make it or break it. :) -
Replied To a Post in What are the challenges of third party API integration?
With ANY API, you mean? I suppose the biggest one is poor documentation. At least that’s the one I find the most frustrating. -
Began Watching What are the challenges of third party API integration?
Hi guyz, What are the challenges of third party API integration? -
Replied To a Post in i need help catching up on a few missed short programs in C
Please post the code you have, what isn’t working as expected, or where you’re stuck, and we can try to help. Or, if you need help with the logic, let … -
Began Watching i need help catching up on a few missed short programs in C
I am trying to get help with code and logic for a few C programs -
Replied To a Post in Google OAuth embedded webview
> To turn off the use of the embedded webview and resolve this issue, you'll need to modify the way you handle the OAuth 2.0 authorization flow in your application. … -
Replied To a Post in Why do you need an Uber clone?
The only people who need an Uber clone are existing taxicab companies that need a way to compete with the flexibility and ease of use that Uber brings. Right now, … -
Began Watching Why do you need an Uber clone?
An **Uber clone script** can be beneficial for several reasons: Quick and Cost-Effective Solution: Developing taxi booking software from scratch can be time-consuming and expensive. By using an Uber clone … -
Replied To a Post in what is the reason for growth of a Ecommerce websie?
I suppose that it is growing because people are buying products on it, and so the owner can then reinvest more money into its growth? -
Began Watching what is the reason for growth of a Ecommerce websie?
Hi guyz! what is the reason for the growth of a Ecommerce website? -
Replied To a Post in What is the most important step in software development?
Your answer is specific to being a software developer consultant providing solutions to clients. -
Replied To a Post in What pages does an ecommerce website need?
A shopping cart? An ability to accept credit card payments? I’m not quite sure what you’re asking. -
Began Watching What pages does an ecommerce website need?
Hi guys, What pages does an ecommerce website need? -
Replied To a Post in What is the most important step in software development?
Figuring out the logic. And organizing your code. -
Began Watching What is the most important step in software development?
Hi guyz, What is the most important step in software development? -
Replied To a Post in Hello, looking forward to networking
Hi and welcome! As far as front-end, I'm really awesome with CSS (Sass), and so-so with Javascript, although I'm really awesome with jQuery. Old school, I know! -
Began Watching Hello, looking forward to networking
Hi I am thrilled that I started looking into this site after a long gap. Any Front End or Word Press devs that would like to connect? -
Replied To a Post in Hi everyone, I'm sepehrsarfaraz
Hello! Nice to meet you. What brought you to DaniWeb? -
Began Watching Hi everyone, I'm sepehrsarfaraz
hello -
Gave Reputation to Reverend Jim in Regex to match word one or more times in a string
Still working on it, but to match one or more occurrences of `string/` starting at the beginning of the string you would specify ^(string/){1,} then if you replaced the matched … -
Replied To a Post in Regex to match word one or more times in a string
Marking as solved for realsies this time! Thanks!! -
Marked Solved Status for Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Replied To a Post in Regex to match word one or more times in a string
It actually worked for: string/string/string/foo/bar => foo/bar string/string/bazbat => bazbat but to additionally match on: string/string I made the following change: ^(string/?){1,}(.*)$ => $2 -
Replied To a Post in Regex to match word one or more times in a string
That worked! :) ^(string/){1,}(.*)$ => $2 -
Replied To a Post in Regex to match word one or more times in a string
Follow up: I marked this thread as solved, because it did indeed solve my problem at hand, but I then unmarked it as solved because I'm hoping someone out there … -
Revoked Solved Status for Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Marked Solved Status for Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Replied To a Post in Regex to match word one or more times in a string
Oh!! Never mind! You gave me the answer after all :) It turns out that Codeigniter's [URI routing](https://codeigniter.com/userguide3/general/routing.html) supports callback functions and I never knew!! P.S. Yes, we're still on … -
Replied To a Post in Regex to match word one or more times in a string
Also ... I don't want to remove *all* occurrences. Just one or more repeated occurrences at the beginning of the string. -
Replied To a Post in Regex to match word one or more times in a string
Correct. That's effectively what I'm trying to do, but through the URI routing mechanism, which of course doesn't have access to native PHP functions. -
Replied To a Post in Regex to match word one or more times in a string
Codeigniter, the PHP framework that I use, has a URI routing mechanism that, for all intents and purposes, functions similar to [Apache's mod_rewrite](https://httpd.apache.org/docs/2.4/rewrite/intro.html). I am having some difficulty in building … -
Replied To a Post in Regex to match word one or more times in a string
This didn't work either: ^((\bstring\/\b)+)(.*)$ => $2 -
Tweeted Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Edited Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Edited Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Edited Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Created Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Began Watching Regex to match word one or more times in a string
I'm really bad with regex. For the purposes of URI rewriting, I'm trying to figure out how to match a word one or more times in a string. For example, … -
Replied To a Post in Hi everyone, I'm uslivjunoji
Welcome to DaniWeb!! -
Replied To a Post in What is the website layout and structure?
Critical to the user experience. -
Began Watching What is the website layout and structure?
Hi guyz, Please share your thoughts on, What is the website layout and structure? -
Edited What factors should I consider when choosing the perfect SMTP server
When choosing the perfect SMTP (Simple Mail Transfer Protocol) server for your business, there are several factors you should consider. Here are some important considerations: Reliability and uptime: Look for … -
Replied To a Post in What Would You Like To See In A SearchEngine ?
How are you going to convince websites to ping your servers anytime there has been a change on their website? My sitemap index file links to 67 sitemaps, each of … -
Replied To a Post in Working on improving meta tags for my WordPress site
> Wow! That`s realy awesome idea. I`ll try it! Did it work? -
Replied To a Post in How To Integrate Html Form With Payment Gateway ?
I'm sorry, I'm not understanding your question. You need to fill out all of this information: curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([ 'transaction_id' => $transaction_id, 'amount' => $amount, 'customer_address' => $customer_address, 'website_address' => … -
Replied To a Post in Working on improving meta tags for my WordPress site
I would also like to clarify, your topic title here is improving meta tags. The <h1> tags you have aren't meta tags, they're header tags. It's a technicality, but an …
The End.