(string) lcFirst                    ($haystack, [$delimiter = '_'])
                
    複合語の最初のトークンの頭文字を小文字に変換します。最初のトークンが頭字語の場合は、そのトークンを区切り子表記に変換します。
Parameters:
| name | type | default | caption | 
|---|---|---|---|
| $haystack | string | String to Convert. | |
| $delimiter | string | '_' | Delimiter. | 
Returns:
- (string) — Uncapitalized String.
Author:
- StewEucen
Since:
- Version 1.0.0
Examples:
use StewEucen\Acts\IntactCase
IntactCase::lcFirst('StudlyCaps') //=> "studlyCaps"
IntactCase::lcFirst('UIView')     //=> "ui_View"