Skip to content
zap-off

GitHub Action

split-by

v1.0.1 Latest version

split-by

zap-off

split-by

Split the string by the given string

Installation

Copy and paste the following snippet into your .yml file.

              

- name: split-by

uses: rishabhgupta/split-by@v1.0.1

Learn more about this action in rishabhgupta/split-by

Choose a version

Github Split-By Action

Actions splits strings by the given delimiter

Inputs

string

required string to be split

split-by

required string/char to be used as the delimiter to split the string.

Output

value

Object containing key value pairs

{
    _0: 'first',
    _1: 'secound'
}

Example Usage

- uses: rishabhgupta/split-by@v1
  id: split
  with:
    string: 'feat/branch-name'
    split-by: '/'
- run: | 
    echo "${{ steps.split.outputs._1}}"