Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 394 Bytes

AfterLast.md

File metadata and controls

22 lines (15 loc) · 394 Bytes

After Last

Example#1

import JStr from "@akcybex/jstr";

const result = JStr.of("\\App\\Http\\Controllers\\Controller")
  .afterLast("\\")
  .toString();
console.log(result); // Outputs: 'Controller'

Example#2

import JStr from "@akcybex/jstr";

const result = JStr.afterLast("abc123abc456abc789", "abc");

console.log(result); // Outputs: '789'