WPIntell

Source evidence

Strange Behavior

Search Regex · support · 2024-08-07T09:53:00+00:00

complaintsentiment
mediumseverity
0.75relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 31 rows with source links

12.9% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

27 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
Rafał unresolved
Hi there! I’d like to correct UPPERCASE to Title Case, but only for single words in table cells. Search: <td>(\p{Lu})(\p{Lu}+)<\/td> Replace: <td>$1[lower]$2[/lower]</td> Sometimes works as expected: ‘SŁOWO’ > ‘Słowo’, but sometimes (and quite often) it eats the second capturing group that should be converted to lowercase , so leaves ‘S’ only… Why? My database collation is utf8mb4_unicode_520_ci This topic was modified 1 year, 9 months ago by Rafał . The plugin uses PHP regular expressions and behaves exactly as PHP behaves. All I can imagine is that your expression is not matching in the way you want.

Comments

1 shown
John Godley 2024-11-23T07:28:00+00:00

The plugin uses PHP regular expressions and behaves exactly as PHP behaves. All I can imagine is that your expression is not matching in the way you want.