0

I use the follow code:

import re

def replace_emoji_space(string):
    emoji_pattern = re.compile("["
                       u"\U0001F600-\U0001F64F"  # emoticons
                       u"\U0001F300-\U0001F5FF"  # symbols & pictographs
                       u"\U0001F680-\U0001F6FF"  # transport & map symbols
                       u"\U0001F1E0-\U0001F1FF"  # flags (iOS)
                       u"\U00002702-\U000027B0"
                       u"\U000024C2-\U0001F251"
                       "]+", flags=re.UNICODE)
    return emoji_pattern.sub(r' ', string)

While string == '趣味でバルーンひねってます' the results is just an empty string, why ?

This is what I get in pycharm: string in pyhon

Mark Tolonen
  • 166,664
  • 26
  • 169
  • 251
Sion C
  • 439
  • 2
  • 14

1 Answers1

0
import re

def replace_emoji_space(string):
    emoji_pattern = re.compile("["
                       u"\U0001F600-\U0001F64F"  # emoticons
                       u"\U0001F300-\U0001F5FF"  # symbols & pictographs
                       u"\U0001F680-\U0001F6FF"  # transport & map symbols
                       u"\U0001F1E0-\U0001F1FF"  # flags (iOS)
                       "]+", flags=re.UNICODE)
    return emoji_pattern.sub(r' ', string)

The last 2 removed the japanese

Mark Tolonen
  • 166,664
  • 26
  • 169
  • 251
Sion C
  • 439
  • 2
  • 14