Actions
Task #87471
closedFix Regex Pattern
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-01-17
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Here is a test for this pattern:
```js
var value= 'pages_3456'
,pattern = /_(\d+)$/
,result = value.toString().match(pattern);
console.log(result);
```
it only works if the pattern is `/_(\d+)$/` if it has the additional `\` it dose not remove the table name.
This issue was automatically created from https://github.com/TYPO3/TYPO3.CMS/pull/157
Actions