Re: question of regexp or (another solution)

2012-12-14 Thread *Shaji Kalidasan*
Hi, On Fri, Dec 14, 2012 at 2:53 PM, samuel desseaux wrote: > Hi! > > I work in a library and i need to have several fields in one line > > Example > > I have this > > =995  \\$xPR$wLivre > =995 \\$bECAM$cECAM > =995  \\$n > =995  \\$oDisponible > =995  \\$kG1 42171 > > > and i want in one line >

Re: question of regexp or (another solution)

2012-12-14 Thread timothy adigun
Hi, On Fri, Dec 14, 2012 at 2:53 PM, samuel desseaux wrote: > Hi! > > I work in a library and i need to have several fields in one line > > Example > > I have this > > =995 \\$xPR$wLivre > =995 \\$bECAM$cECAM > =995 \\$n > =995 \\$oDisponible > =995 \\$kG1 42171 > > > and i want in one line >

Re: question of regexp or (another solution)

2012-12-14 Thread Dr.Ruud
On 2012-12-14 14:54, samuel desseaux wrote: =995 \\$xPR$wLivre =995 \\$bECAM$cECAM =995 \\$n =995 \\$oDisponible =995 \\$kG1 42171 and i want in one line =995 \\$bECAM$cECAM$kG1 42171$n$oDisponible$xPR$wLivre echo -n '1 a 1 b 1 c 2 x =995 \\$xPR$wLivre =995 \\$bECAM$cECAM =995 \\$n

Re: question of regexp or (another solution)

2012-12-14 Thread samuel desseaux
i complete my email Hi! I work in a library and i need to have several fields in one line Example I have this =995 \\$xPR$wLivre =995 \\$bECAM$cECAM =995 \\$n =995 \\$oDisponible =995 \\$kG1 42171 and i want in one line =995 \\$bECAM$cECAM$kG1 42171$n$oDisponible$xPR$wLivre How could i

question of regexp or (another solution)

2012-12-14 Thread samuel desseaux
Hi! I work in a library and i need to have several fields in one line Example I have this =995 \\$xPR$wLivre =995 \\$bECAM$cECAM =995 \\$n =995 \\$oDisponible =995 \\$kG1 42171 and i want in one line =995 \\$bECAM$cECAM$kG1 42171$n$oDisponible$xPR$wLivre