This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file is part of the Inserm Radico package. | |
* | |
* @author Stéphane IBANEZ <[email protected]> | |
* | |
* This class is used for cleaning input strings | |
* 1 - ' is replace by a sapce | |
* 2 - All non alpha characters are removed | |
* 3 - "-" is replaced by a space | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Inserm_RadicoBundle\Entity; | |
class Grep { | |
protected $_code = null; | |
protected $_itemNumber = 0; | |
protected $_replaceList = array(); | |
protected $_search = array(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* This file is part of the Inserm Radico package. | |
* | |
* @author Stéphane IBANEZ <[email protected]> | |
* | |
* This class is used for manipulate strings and new methods will be added further. | |
* | |
* To use this class outof Symfony environment, delete the line namespace InsermRadicoBundle\Entity; |