Function replaceStringAtIndex

  • Replaces whatever substring is at the given index in the original string with the new string. Optionally, provide a length of the substring to get replaced.

    Parameters

    • originalString: string
    • start: number
    • newString: string
    • length: number = newString.length

    Returns string

    import {replaceStringAtIndex} from '@augment-vir/common';

    replaceStringAtIndex('eat the waffles', 4, 'his'); // outputs `'eat his waffles'`
    replaceStringAtIndex('eat the waffles', 4, 'my', 3); // outputs `'eat my waffles'`

    @augment-vir/common