answersLogoWhite

0

i do not no how to make scoobies!!there so complicated!anyone no how to do them?Its Actully Really Simple.

Well, its alittle hard to explain, but you have to loop over each string and on the last on thread it through the first loop you did. If you go on YouTube, it'll probably make more sense.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you make a scooby doo wristband?

You get some Scooby beads and put them in through the string then tie the string


Longest scoobie string?

The Longest Scooby String is 6ft.


How do you do a scooby string?

Melt the ends together, I think!


How do you finish off a scooby string?

Melt the ends together, I think!


How do you make 4 string square scoobies?

To make a 4-string square Scooby, start by cutting four equal lengths of Scooby string, typically around 24 inches each. Tie them together in a knot at one end, ensuring they are secure. Hold the knot and divide the strings into pairs; then, cross the left pair over the right pair, and pull the ends through to create a square knot. Continue this pattern, alternating the pairs, until you reach your desired length, then tie off securely at the end.


Did scooby start as a comic or cartoon?

Scooby-Doo was originally , and only , a cartoon . There are a number of comic books with the titular character .


What string on a violin do you start with to tune the whole violin?

you start with the A string and follow to the other strings


What year did the show The Scooby Doo Show start?

It started in 1969.


What is second string and first string on soccer team?

first string are the better players they start, second string backs them up.


How would you implement a substr function that extracts a sub string from a given string?

substr(string, position [, count]) It extract substring starting from start and going for count characters. If count is not specified, the string is clipped from the start till the end


How do you start a scoubi 4 string?

you die


How do you split a string in delimit c plus plus?

#include<iostream> #include<vector> #include<string> std::vector<std::string> parse (const std::string& s, const char delim) { std::vector<std::string> result {}; auto start = 0U; auto end = s.find (delim); while (end != s.npos) { result.push_back (s.substr(start, end - start)); start = ++end; end = s.find (delim, start); } result.push_back (s.substr (start, s.npos - start)); return result; } std::vector<std::string> parse (const std::string& s, const std::string& delim) { std::vector<std::string> result {}; auto start = 0U; auto end = s.find (delim); while (end != s.npos) { result.push_back (s.substr(start, end - start)); start = end + delim.length(); end = s.find (delim, start); } result.push_back (s.substr (start, s.npos - start)); return result; } int main() { std::string str1 = "This is a string that will be parsed by a single-space delimiter."; std::string str2 = "This==is==a==string==that==will==be==parsed==by==equal==operator."; std::string str3 = "This string has no delimiter."; std::cout << str1 << std::endl; std::vector<std::string> v1 = parse (str1, ' '); for (auto i : v1 ) std::cout << i << std::endl; std::cout << std::endl; std::cout << str2 << std::endl; std::vector<std::string> v2 = parse (str2, "=="); for (auto i : v2 ) std::cout << i << std::endl; std::cout << std::endl; std::cout << str3 << std::endl; std::vector<std::string> v3 = parse (str3, '\\'); for (auto i : v3 ) std::cout << i << std::endl; std::cout << std::endl; }