answersLogoWhite

0


Best Answer

It's very easy to replace the string on a pair of drawstring pants. Attach a large safety pin to one end of the string. Feed it through the hole and push it through to the other side, using the pin as a grip as you feed it. Once it's out the other hole, remove the pin and you are done.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an easy method for replacing the string on a pair of drawstring sweatpants?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the differences in elastic and drawstring ballet slippers?

The elastic is the piece that goes across the top of the foot to hold the shoe on. The drawstring is the long stretchy string that comes out on the top of the shoe. This can be tightened or loosened, it jsut helps to keep the shoe snug on the foot and not bunchy


What method returns the uppercase equivalent of a string?

The toUpperCase() method returns the uppercase equivalent of a string.


How do you separate a word using a string method?

The string class has a split() method which takes a regex pattern and splits the string and returns an array.


What are some ways in order to perform String comparison in Java?

String comparison in Java features four ways. These ways are String comparison using equals method, equalsIgnoreCase method, CompareTo method, and CompareToIgnoreCase method.


How do you get odd ascii letters from a given string using string copy?

there is no such method using string copy


What method that returns string representation of the contents of the variable?

Since the question is in the Java category: in Java, the method is called toString(). This method will automatically be invoked if you implicitly convert an object to String type, for example: "The answer is: " + myObject In this example, the String concatenation (the plus sign) forces the object, myObject, to type String - to do this, the object's toString() method will be called.


What method of the string class would help you check if a string ends with a certain sequence of characters?

str.endsWith(string)


What is the constant string length method?

To get the length of the string we use length property. The length property returns the length of a string (number of characters we use).If the string is empty, length of the string will be 0. Syntax: string.length Hope this helps.


Write a method header for a method named find that takes a String and a double as parameters and returns an integer?

int find(String str, double d);


How do you use indexOf in java?

indexOf is a method of the String class. Since the indexOf method is overloaded, I will be using the indexOf(String str) version in this example. According to the API Documentation, this method "Returns the index within this string of the first occurrence of the specified substring." So, if you wanted to find the position of the letter 'v' in the String 'Java' and print it out, you would do this: String str = "Java"; int i = str.indexOf("v"); System.out.println(i); If the character you passed in the indexOf method does not exist in the String, indexOf would return a -1 (negative one).


How do you define a method with method attributes?

Access Datatype1 MethodName(Datatype TemporaryName, Datatype TemporaryName) { return Datatype1; } Which could look like: public String Hello(String firstAttribute, String secondAttribute ) { return firstAttribute; }


How do you copy a string from one method into another string in another method in java?

You can have two String variables (note that String variables are object references) refer to the same String object like so: String str1 = "Hello"; String str2 = str1; Now the str1 and str2 are references for the same String object containing the word "Hello". If you actually want a new String object with a copy of the contents of the original String, you use the String constructor that takes a String argument, like so: String str3 = new String(str1); Now str1 and str3 refer to SEPARATE String objects that happen to contain the same sequence of characters (the word "Hello"). Since Strings objects in Java are immutable, they can be shared without worrying about the contents used by one variable being upset by the use through another variable as might happen with char[] arrays in C or C++ so the first method is probably sufficient for most cases.