util.pl
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. #####
  2. #  FCKeditor - The text editor for internet
  3. #  Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4. #  
  5. #  Licensed under the terms of the GNU Lesser General Public License:
  6. #   http://www.opensource.org/licenses/lgpl-license.php
  7. #  
  8. #  For further information visit:
  9. #   http://www.fckeditor.net/
  10. #  
  11. #  File Name: util.pl
  12. #   This is the File Manager Connector for Perl.
  13. #  
  14. #  File Authors:
  15. #   Takashi Yamaguchi (jack@omakase.net)
  16. #####
  17. sub RemoveFromStart
  18. {
  19. local($sourceString, $charToRemove) = @_;
  20. $sPattern = '^' . $charToRemove . '+' ;
  21. $sourceString =~ s/^$charToRemove+//g;
  22. return $sourceString;
  23. }
  24. sub RemoveFromEnd
  25. {
  26. local($sourceString, $charToRemove) = @_;
  27. $sPattern = $charToRemove . '+$' ;
  28. $sourceString =~ s/$charToRemove+$//g;
  29. return $sourceString;
  30. }
  31. sub ConvertToXmlAttribute
  32. {
  33. local($value) = @_;
  34. return $value;
  35. # return utf8_encode(htmlspecialchars($value));
  36. }
  37. sub specialchar_cnv
  38. {
  39. local($ch) = @_;
  40. $ch =~ s/&/&/g; # &
  41. $ch =~ s/"/"/g; #"
  42. $ch =~ s/'/'/g; # '
  43. $ch =~ s/</&lt;/g; # <
  44. $ch =~ s/>/&gt;/g; # >
  45. return($ch);
  46. }
  47. 1;