Click or drag to resize
IUserAccessiablestringTrim Method
Trim all white-space characters from the start and end of inA string

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
string stringTrim(
	string inA
)

Parameters

inA
Type: SystemString
input string

Return Value

Type: String
inA string after removing all white-space characters from the start and end of inA
Examples
stringTrim(" Hello World ") will return the string "Hello World".
See Also