ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Your version: XXA150061R

This page concerns the 16 + version of WINDEV, WEBDEV and WINDEV Mobile. Update your version.
The content of this page has been updated to version 25.  See documentation 25 now.
Help / WLanguage / WLanguage functions / Standard functions / String functions
  • NoCharacter 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 specified characters:
  • from the left and right side of the initial string.
  • Versions 20 and later
    WINDEVWEBDEV - Server codeUniversal Windows 10 App within the initial string.
Versions 17 and later
iPhone/iPad This function is now available for iPhone/iPad applications.
Universal Windows 10 App This function is now available for Windows Phone applications.
Versions 18 and later
Android Widget This function is now available in Android widget mode.
Universal Windows 10 App This function is now available in Windows Store apps mode.
Stored procedures This function is now available in the code of stored procedures.
Versions 21 and later
Apple Watch This function is now available in Apple Watch mode.
Universal Windows 10 App This function is now available for Universal Windows Platform applications.
Versions 25 and later
WEBDEV - Browser code This function is now available in browser code.
Example
MyString is string
MyString = NoCharacter("<Text>", "<>") 
// MyString contains "Text"
Versions 20 and later
NoCharacter("Abracadabra", "a", sscInside)   // Returns "Abrcdbra"
NoCharacter("Abracadabra", "a", sscAll)   // Returns "brcdbr"
Syntax
<Result> = NoCharacter(<Initial string> , <Characters to remove> [, <Position>])
<Result>: Character string
Character string without the specified characters on the left and right side of the initial string.
<Initial string>: Character string
Initial character string.
<Characters to remove>: Character string
List of characters to be deleted from the initial string.
If this parameter corresponds to an empty string (""), <Result> will correspond to the initial string.
<Position>: Optional Integer constant
Versions 20 and later
Position of the characters to remove. This position can correspond to one of the following constants:
sscAllRemoves all the specified characters from the initial string.
Equivalent to sscRight + sscLeft + sscInside.
sscInsideRemoves the specified characters within the initial string.
sscLeftRemoves the specified characters from the left side of the initial string.
sscOutside
(Default value)
Removes the specified characters from both sides of the initial string.
Equivalent to sscRight + sscLeft.
sscRightRemoves the specified characters from the right side of the initial string.
Universal Windows 10 AppAndroidAndroid Widget JavaPHP This parameter is not available.
Remarks

NoCharacter 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 NoCharacter 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 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/21/2023

Send a report | Local help