ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / String functions
  • Special cases
  • NoSpace and UNICODE
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns a string after removing the spaces:
  • from the left and right side of the initial string.
  • WINDEVWEBDEV - Server codeUniversal Windows 10 App within the string.
Example
NoSpace("   3.75 Euros   ")   // Returns "3.75 Euros"
NoSpace("Abra ca da bra", sscInside)   // Returns "Abracadabra"
Syntax
<Result> = NoSpace(<Initial string> [, <Position>])
<Result>: Character string
String without spaces.
<Initial string>: Character string
Initial string from which the leading and trailing spaces will be removed. This character string is not modified.
<Position>: Integer constant
Position of the spaces to be removed. This position can correspond to one of the following constants:
sscAllRemoves all spaces from the initial string.
Equivalent to sscRight + sscLeft + sscInside.
sscInsideRemoves spaces within the initial string.
sscLeftRemoves spaces from the left side of the initial string.
sscOutside
(Default value)
Removes spaces from both sides of the initial string.
Equivalent to sscRight + sscLeft.
sscRightRemoves spaces from the right side of the initial string.

WEBDEV - Browser codeUniversal Windows 10 AppPHP This parameter is not available.
Remarks

Special cases

  • Left can also be used to remove spaces from the right side of the string.
  • Right can also be used to remove spaces from the left side of the string.
  • Non-breaking spaces: Non-breaking spaces (ESP constant or <160> character) are not removed by NoSpace. To remove them, use NoRightCharacter with the ESP constant.

NoSpace and UNICODE

If the string passed as a parameter is an ANSI string, the result will be an ANSI string.
If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string.
Remark: If the result of NoSpace on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed.
For more details, see Managing UNICODE.
Business / UI classification: Neutral code
Component: wd290vm.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/08/2022

Send a report | Local help