Both option B and C can be used to remove spaces from the input text. However, the difference between them is that remove(ri!text, " ") removes all occurrences of the specified character (in this case, the space character) from the input text, while stripwith(ri!text, " ") removes only leading and trailing occurrences of the specified character. Therefore, in the case where you want to remove all spaces from the input text, option B (remove(ri!text, " ")) is better.
remove() is used for removing a value from an array by providing the index as one its parameter
Stripwith() removes all the characters in the input which is specified to removed
trim() removes the leading and trailing spaces
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
nyxxx
1 year, 8 months agomyucarlos
6 months agoSid_16
1 year, 7 months agoSid_16
1 year, 7 months agoyanoolthecool
12 months ago