Creates an acronym from a string by taking the first letter of each word and capitalizing it.
Capitalizes the first letter of each word in a string, also known as title casing.
Extracts the file extension from a given URL, if present.
Determine whether a string is a palindrome.
Validate whether a given string is a valid Indian PAN card number.
Converts a string to camel casing. For example, 'hello world' becomes 'helloWorld'.
Converts a string to kebab casing. For example, 'hello world' becomes 'hello-world'.
Converts a string to pascal casing. For example, 'hello world' becomes 'HelloWorld'.
Converts a string to path casing. For example, 'hello world' becomes 'hello/world'.
Converts a string to snake casing. For example, 'hello world' becomes 'hello_world'.
Truncates a string to a specified length.