path/case Converter
Convert text or identifiers to path/case instantly.
This tool runs entirely in your browser. Your files are never uploaded to a server.
Convert a word sequence to lowercase path/case segments joined by `/`. Tokenization splits whitespace, `_`, `-`, `.`, existing `/`, lowercase-to-uppercase boundaries, and an acronym before its following capitalized word, so `APIResponse/user_id` becomes `api/response/user/id`. Repeated supported separators collapse, while other punctuation can stay attached to a segment. The result is a naming transformation only: it does not URL-encode characters, preserve an absolute leading slash, resolve `.` or `..`, check reserved file names, or prove the path is safe for a URL, router, operating system, or file system. Output is produced locally for copying.
Frequently Asked Questions
- What is path/case used for?
- It's useful for generating URL paths, file-system-style paths, or route segments from a title or phrase.
- Can I convert from snake_case or camelCase to path/case?
- Yes — the tool splits your input on underscores, hyphens, dots, spaces, and existing camelCase/PascalCase boundaries before rejoining it with forward slashes, so it works from any of those styles.
- Does this create a valid file-system path?
- It produces the segment structure (lowercase words joined by slashes), but you should still check for characters your target operating system or URL scheme doesn't allow.