Re: Some Universal regex for puntuations

2014-08-20 Thread R.J. Baars
This one will generate false errors on the plain type F16 and mp3. Not that general after all... Ruud > I mean these rules are useful for all languages for example > --- > should have space between word and numbers numbers > (\d+)(\w+) > $1 $2 > > will do this action > foo123 > foo 123 > >

Re: Some Universal regex for puntuations

2014-08-20 Thread Daniel Naber
On 2014-08-20 10:46, Reza engyian wrote: > I mean these rules are useful for all languages for example > > --- > > should have space between word and numbers numbers > (d+)(w+) > > $1 $2 > > will do this action > foo123 > foo 123 Maybe it's useful, but it may also create quite some false

Re: Some Universal regex for puntuations

2014-08-20 Thread Reza engyian
I mean these rules are useful for all languages for example --- should have space between word and numbers numbers (\d+)(\w+) $1 $2 will do this action foo123 > foo 123 I checked java rules and I didn't see these actions On Wed, Aug 20, 2014 at 1:11 PM, Daniel Naber wrote: > On 2014-08-1

Re: Some Universal regex for puntuations

2014-08-20 Thread Daniel Naber
On 2014-08-19 21:27, Reza engyian wrote: Hi Reza, > Hi all,I found some regexs which help to have better punctuation if > they are not controlled by LT please add them to the tool: > The Second line after the regexs is suggestion line thanks - I'm not sure what you mean by "universal", though. I

Some Universal regex for puntuations

2014-08-19 Thread Reza engyian
Hi all, I found some regexs which help to have better punctuation if they are not controlled by LT please add them to the tool: The Second line after the regexs is suggestion line --- should have space between word and numbers numbers (\d+)(\w+) $1 $2 (\w+)(\d+) $1 $2 space between refrrence