TestingDocs.com
Software Testing website
  • JBehave
  • Selenium
  • Testlink
  • Maven
  • Git
  • RAPTOR
  • Questions

String Operations in Raptor Flowchart

Tweet
Pin it

Document Contents

  • Introduction
  • Length_Of
  • Concatenation
  • To_ASCII

Introduction

In this tutorial, let’s learn some string operations that we can perform in Raptor flowcharts with examples.

Length_Of

Length_Of() function can be used to find the length of the string expression or an array. In the example, website string

has 19 characters.

website <- “www.TestingDocs.com”

length_of(website) = 19

String length

Concatenation

The concatenation of strings is joining two or more strings together. In the Raptor flowchart, we can use the + operator to concatenate strings. In the example, we have two strings

protocol <- “https://”

domain <- “testingdocs.com”

protocol + domain = “https://testingdocs.com”

 

Concatenation Demo

To_ASCII

To_ASCII function returns the ASCII(American Standard Code for Information Interchange)  code of the character. The ASCII table can be found online.

character <- ‘A’

to_ascii(character) = 65

 

Related Posts

Raptor Flowchart /

Writing to a file with RAPTOR

Raptor Flowchart /

Simulation of probabilities die roll using Raptor Flowchart

Raptor Flowchart /

Raptor Subcharts Demo Flowchart

Raptor Flowchart /

User input validation in Raptor flowchart

Raptor Flowchart /

Running Raptor flowchart on Ubuntu

Tag Cloud

Agile Appium Tutorials C++ Eclipse Tutorials Git Tutorials IntelliJ Tutorials Java Java Tutorial JBehave Jenkins Jira Cloud JUnit Tutorial Maven Object-oriented Flowchart Python Tutorials Raptor Flowcharts Selenium IDE TestLink Tutorials

Random Posts

  • TestLink Bitnami Cloud Image
    Overview In this tutorial, we will see the steps

    Read more

  • Code Coverage Tools
    Overview Let’s look at some of the code coverage

    Read more

  • pCloudy Continuous Testing Cloud
    Overview pCloudy is a continuous testing cloud

    Read more

Latest Tweets

Tweets by @TestingDocs

Back to Top

TestingDocs.com

  • Privacy Policy
  • Cookie Policy
  • JBehave
  • Selenium
  • Testlink
  • Maven
  • Git
  • RAPTOR
  • Questions
www.TestingDocs.com | All Rights Reserved