Skip to content
This repository was archived by the owner on Jun 17, 2020. It is now read-only.
This repository was archived by the owner on Jun 17, 2020. It is now read-only.

Implement String Operations #8

@sanket143

Description

@sanket143
first = "Time";
second = "not Time";

Concatenation

newVar = first + " " + second;
print(newVar);  # Time not Time

is SubString

newVar = first ~= second; # is 'Time' substring of 'not Time'
print(newVar); # true

SubString

newVar = second[4:7];
print(newVar); # Tim

Length ( Draft )

newVar = $first;
print(newVar); # 4

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions