Jump to content

Cleaning up a Variable


amin84
 Share

Recommended Posts

Hi, I was wondering how to check if a variable has space(s) at the end and remove them.

For example if the variable has "this is a value " as the value, how to clean up (remove) the X number of spaces at the end of the variable?

That variable will be filled out by the user. So we don't know what is the number of the spaces at the end.

Tnx.

Link to comment
Share on other sites

StringStripWS do that when the flag is 2 (strip trailing white space)

$string1 = "this is a value "
$string2 = "this is a value    "

ConsoleWrite(StringStripWS($string1, 2) & @CRLF)
ConsoleWrite(StringStripWS($string2, 2) & @CRLF)
Edited by AdmiralAlkex
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...