Jump to content

Recommended Posts

Posted

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.

Posted (edited)

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

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
×
×
  • Create New...