Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
/ substr-action Public archive

GitHub action to overcome the lack of substring function

Notifications You must be signed in to change notification settings

web3j/substr-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Archive Notice

This project is no longer under active development and has been archived. The repository is kept for historical purposes and read-only access. No further updates or pull requests will be considered.

Substr Javascript action

The substr method extracts parts of a string, beginning at the character at the specified position, and returns the specified characters.

Tip: To extract characters from the end of the string, use a negative start number.

Inputs

value

Required What to substring.

start

Required The position where to start the extraction. First character is at index 0.

  • If start is positive and greater than, or equal, to the length of the string, substr() returns an empty string.
  • If start is negative, substr() uses it as a character index from the end of the string.
  • If start is negative or larger than the length of the string, start is set to 0.

length

The number of characters to extract. If omitted, it extracts the rest of the string.

Outputs

result

A new String, containing the extracted part of the text. If length is 0 or negative, an empty string is returned.

Example usage

uses: web3j/[email protected]
with:
  value: 'Mona the Octocat'
  start: '9'

Result: Octocat

About

GitHub action to overcome the lack of substring function

Resources

Stars

Watchers

Forks

Packages

No packages published