Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

210
Views
how to remove Yiddish scoring from a string in PHP

I get characters from a API URL request like this ִֵנׂקֹוַדֹּוֶת and I went to get only the text. How can I convert it in PHP AND in javascript?

from נׂקֹוַדֹּוֶת
to נקודות
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

FOR JavaScript you can use this

<!DOCTYPE html>
<html>
<body>
<p>JavaScript can change נקודות content.</p>

<p id="demo">JavaScript can change נקודות content.</p>

<script>
var string = "נׂקֹוַדֹּוֶת";

var string_norm = string.replace(/[ְֱֲֳִֵֶַָֹֹּׁׂ]/g, '');
document.getElementById("demo").innerHTML = (string_norm);
</script>

</body>
</html>
about 4 years ago · Juan Pablo Isaza Report

0

in PHP you can use this

$str = 'נׂקֹוַדֹּוֶת ';
$rule = 'NFD; [:Nonspacing Mark:] Remove; NFC';

$myTrans = Transliterator::create($rule); 
echo $myTrans->transliterate($str);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!