Returns the string that removed the leftmost given string, case-insensitive
Optional
the text to inspect
the string to remove, case-insensitive
the string that removed the leftmost given string, case-insensitive
removeStartIgnoreCase('foobar', 'Hello'); // 'foobar'removeStartIgnoreCase('foobar', 'Foo'); // 'bar' Copy
removeStartIgnoreCase('foobar', 'Hello'); // 'foobar'removeStartIgnoreCase('foobar', 'Foo'); // 'bar'
Returns the string that removed the leftmost given string, case-insensitive