Re: How to replace non aschii character and replace with blank space

2013-06-27 Thread Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯
'abcd5³³³€€½¼¬trgdg¼5# sf fs ´dg ßdsf' =~ s/\P{ASCII}/\N{SPACE}/gr; __END__ abcd5trgdg 5# sf fs dg dsf In the future, please observe the this mailing list's user guide, your question was off-topic.

How to replace non aschii character and replace with blank space

2013-06-07 Thread Prakash Dutta
Hi All, This group has help me a lot to understand lots of things. I am facing one issue in my perl assignment. I have to replace some non ascii character from a string with a blank character if non ascii character found in that string. Please help me with some code. Thanks