Search

STRING

Articles

Substring

Extracts the characters from a string, between two specified indices, and returns the new sub string.

Syntax

Substring(string1,start_index, end_index)

Sample

  1. Substring(JIFFYRPA,5,8) => RPA

  2. Substring(JIFFYRPA,0,5) => JIFFY

Parameter Details

Input Parameter Name Description
String1 string value
Start_index Start index of substring
End_index End index of substring

Capitalize

Capitalizes the first character of a string.

Syntax

Capitalize()

Sample

  1. Capitalize(jiffyrpa) => Jiffyrpa
  2. Capitalize(123rpa) => 123rpa
  3. Capitalize(123) => 123

Parameter Details

Input Parameter Name Description
String1 string value to be capitalized

isAlphaorNot

Return true if the string contains only letters.

Syntax

isAlphaorNot(String1))

Sample

  1. isAlphaorNot(JIFFYRPA) => True
  2. isAlphaorNot(123) => False
  3. isAlphaorNot(JIFFY123) => False

Parameter Details

Input Parameter Name Description
String1 Input string value

isAlphanumeric

Return true if the string contains only letters and numbers.

Syntax

isAlphanumeric(String1)

Sample

  1. isAlphanumeric(JIFFYRPA)=>True
  2. isAlphanumeric(JIFFY123)=>True
  3. isAlphanumeric(123)=>True
  4. isAlphanumeric(%$^)=> False

Parameter Details

Input Parameter Name Description
String1 Input string value

isNumeric

Return true if the string only contains only digits.

Syntax

isNumeric(String1)

Sample

  1. isNumeric(123) => True
  2. isNumeric(JIFFYRPA) => False
  3. isNumeric(JIFFY123) => False

Parameter Details

Input Parameter Name Description
String1 Input string value

Collapse whitespaces

Converts all adjacent white-space characters to a single space.

Syntax

Collapse whitespaces(String1)

Sample

  1. Collapse whitespaces(JIFFY RPA) => JIFFYRPA
  2. Collapse whitespaces(JIFFYRPA ) => JIFFYRPA
  3. Collapse whitespaces( JIFFYRPA) => JIFFYRPA

Parameter Details

Input Parameter Name Description
String1 Input string value

isUppercase

Returns true if given string or character is uppercase.

Syntax

isUppercase(String1)

Sample

  1. isUppercase(JIFFYRPA) => True
  2. isUppercase(jiffyrpa) => False
  3. isUppercase(jiffyRPA) => False

Parameter Details

Input Parameter Name Description
String1 Input string value

isLowercase

Returns true if given string or character is lowercase.

Syntax

isLowercase(String1)

Sample

  1. isLowercase(jiffyrpa) => True
  2. isLowercase(JIFFYRPA) => False
  3. isLowercase(jiffyRPA) => False

Parameter Details

Input Parameter Name Description
String1 Input string value

Contains

Returns true if given string or character is lowercase.

Syntax

Contains(String1,substring1)

Sample

  1. Contains(JIFFYRPA,RPA) => True
  2. Contains(JIFFYRPA,PAA) => False
  3. Contains(JIFFYRPA123,123) => True

Parameter Details

Input Parameter Name Description
String1 Complete string
Substring substring of string1

Concat

Adds two strings.

Syntax

Concat(String1,substring1)

Sample

  1. Concat(JIFFY,RPA) => JIFFYRPA*
  2. Concat(JIFFY,123) => JIFFY123*

Parameter Details

Input Parameter Name Description
String1 string value
String2 string value

Length

To find the length of the string.

Syntax

Length(String1)

Sample

  1. Length(JIFFYRPA) => 8
  2. Length(JIFFY123) => 8

Parameter Details

Input Parameter Name Description
String1 string value for which length has to be calculated

To Uppercase

Converting the String to Uppercase.

Syntax

To Uppercase(String1)

Sample

  1. To Uppercase(jiffyrpa) => JIFFYRPA
  2. To Uppercase(JIFFYRPA) => JIFFYRPA
  3. To Uppercase(jiffy123) => JIFFY123

Parameter Details

Input Parameter Name Description
String1 string value which has to be converted to upper case

To Lowercase

Converting the String to Lowercase.

Syntax

To Lowercase(String1)

Sample

  1. To Lowercase(JIFFYRPA) => jiffyrpa*
  2. To Lowercase(jiffyrpa) => jiffyrpa*
  3. To Lowercase(jiffy123) => jiffy123*

Parameter Details

Input Parameter Name Description
String1 string value which has to be converted to lower case

Replace the word

Replace a specific value in a string with another value.

Syntax

Replace the word(String1, replace_with, string value)

Sample

  1. Replace the word(JIFFYRPA, TEST, RPA) => JIFFYTEST
  2. Replace the word(JIFFY123, TEST, 123) => JIFFYTEST
  3. Replace the word(JIFFYRPA, 123, RPA) => JIFFY123

Parameter Details

Input Parameter Name Description
String1 Complete string
replace_with string value string value to be replaced in original string

Trim

Remove white spaces from both side of the string.

Syntax

Trim(string_with_whitespace)

Sample

  1. Trim( JIFFYRPA )=> JIFFYRPA
  2. Trim(JIFFYRPA )=> JIFFYRPA
  3. Trim( JIFFYRPA)=> JIFFYRPA

Parameter Details

Input Parameter Name Description
String1 Complete string
string_with_whitespace Input string value

Starts_With

Checks whether string starts with substring

Syntax

Starts_With(string_1, search_string)

Sample

  1. Starts_With(JIFFYRPA, JIF) => True
  2. Starts_With(JIFFYRPA, RPA) => False

Parameter Details

Input Parameter Name Description
String1 Complete string
search_string string value for verification

IndexOf

To get the first index value of a substring inside a string

Syntax

IndexOf(search_string, string_1)

Sample

  1. IndexOf(JIFFY,FY) =>3
  2. IndexOf(JIFFY,F) =>2

Parameter Details

Input Parameter Name Description
search_string substring from original string
string_1 Original string

LastIndexOf

To get the last index value of a substring inside a string

Syntax

LastIndexOf(string_1, search_string)

Sample

  1. LastIndexOf(JIFFY, FY) => 3
  2. LastIndexOf(JIFFY, Y) => 4

Parameter Details

Input Parameter Name Description
string_1 substring from original string
search_string string value for verification

Slice

Slice the string

Syntax

Starts_With(string_1, search_string)

Sample

  1. LastIndexOf(JIFFY, FY) => 3
  2. LastIndexOf(JIFFY, Y) => 4

Parameter Details

Input Parameter Name Description
string_1 string value
Start_index Substring start index
End_index Substring End index

CharAt

Get the String Variables

Syntax

CharAt (string, index)

Sample

  1. CharAt (JIFFYRPA, 5)=>R
  2. CharAt (JIFFYRPA, 0)=>J

Parameter Details

Input Parameter Name Description
string string value
index index of string

Ends_With

Checks whether string ends with substring

Syntax

Ends_With(search_string, string)

Sample

  1. Ends_With(RPA,JIFFYRPA) => True
  2. Ends_With(TEST,JIFFYRPA) => False
  3. Ends_With(JIFFY123,123) => True

Parameter Details

Input Parameter Name Description
Search string string value
string Complete string

Did you find what you were looking for?