PHP에서 UTF8을 이용해서 초성을 잡으려고 합니다.

center의 이미지

UTF-8 환경에서.

mb_regex_encoding('UTF-8'); 
$body = mb_ereg_replace("([ㄱ-ㅎ*])","",$body); 

이렇게 하면 ㄱ에서 ㅎ까지 n번이상 입력되어있는
즉 ㅋㅋ,ㅎㅎㅎ 뭐 이런 보기 싫은 초성체들 제거(공백으로 치환)가 가능하나,

저 범위(ㄱ~ㅎ) 말고도 ㄲ ㅃ ㄸ 같은것도 제거하고 싶어서, UTF-8을 조사해보니
한글 초성범위가 1100~1159임을 확인,

초성범위인것들을 모두 제거할려고 다음과 같이 해봤는데
정규표현식이 잡히지 않는군요.

mb_regex_encoding('UTF-8'); 
$body = mb_ereg_replace("([\x{1100}-\x{1159}]+)","",$body); 

한글 UTF-8 부분중 초성체(1100~1159)부분을 잡는 정규표현식에 대해서
알려주시면 감사하겠습니다.

markboy의 이미지

그냥 처음처럼 하시면 되지 않나요? 아래처럼 테스트 코드를 짜봤습니다.

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>

<?php
  $body="호호ㄱAㄴㄷBㄹㄲCㅃㄸ하하";
  mb_regex_encoding('UTF-8');
  print mb_ereg_replace("[ㄱ-ㅎ]+","",$body);
?>
  </body>
</html>

웹브라우저로 확인해보면 "호호ABC하하" 로 잘 나오는데요 :D

byung82의 이미지

유니코드를 조합형으로 만들수 있습니다.

이 문서를 참조하시기 바랍니다.

http://groups.google.com/group/microsoft.public.kr.vc.qna/msg/5c2d58217aaba486?dq=&hl=ko&lr=&ie=UTF-8&oe=UTF-8

그럼

center의 이미지

markboy wrote:
그냥 처음처럼 하시면 되지 않나요? 아래처럼 테스트 코드를 짜봤습니다.

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>

<?php
  $body="호호ㄱAㄴㄷBㄹㄲCㅃㄸ하하";
  mb_regex_encoding('UTF-8');
  print mb_ereg_replace("[ㄱ-ㅎ]+","",$body);
?>
  </body>
</html>

웹브라우저로 확인해보면 "호호ABC하하" 로 잘 나오는데요 :D

앗...저의 불찰이었군요.-_-..
저는 ㄱ에서 ㅎ인지라 나머지 기타 문자열들(ㄲㅃㄳ 등등..)
은 안될거라 생각했는데 다행이라도 깨끗이 잘 되는군요.
감사합니다.^-^

center의 이미지

byung82 wrote:
유니코드를 조합형으로 만들수 있습니다.

이 문서를 참조하시기 바랍니다.

http://groups.google.com/group/microsoft.public.kr.vc.qna/msg/5c2d58217aaba486?dq=&hl=ko&lr=&ie=UTF-8&oe=UTF-8

그럼

정보감사합니다.C에 관련된 것인지라 연구좀 해봐야겠군요.^^

byung82의 이미지

C 라 해도 php로 포팅하시는데 큰 문제는 없을것입니다.

소스 자체가 워낙 간결하게 되어 있고

거의 일반적인 언어에서 쓸수 있는 방법이 동원되었기 때문에 ^^;

금방 변환 하시것 입니다.

그럼

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.