Regex add space to camelCase - but not if a trailing upperCase letter exists -
so i've found - working code sample
\\b[a-z])", " $1"
however don't want space out things "accountuserid" "account user d" - no spacing if trailing uppercase letter exists
can show me better approachable way - possibly using capturing groups , negative digit identifier.
thanks!
Comments
Post a Comment