Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7524735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T03:08:40+00:00 2026-05-30T03:08:40+00:00

preg_match(/\w+/, $s, $matches); I have the PHP code above. I use it to match

  • 0
preg_match("/\w+/", $s, $matches);

I have the PHP code above. I use it to match words in a string. It works great, except in one case.

Example:

'This is a word' should match {'This','is','a','word'}

'Bös Tüb' should match {'Bös','Tüb'}

The first example works, but the second does not. Instead it returns {'B','s','T','b'}, it does not see the ö and ü as a word character.

Question

How to match the ö and ü and any other characters that are normally used in names (they can be strange, this is about German and Turkish names)? Should I add them all manually (/[a-zA-Z and all others as unicode]/)?

EDIT

As I ofcourse forgot to mention, there are a lot of \n, \r and ' ' characters in between the words. This is why I am using Regex.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T03:08:41+00:00Added an answer on May 30, 2026 at 3:08 am

    You can use the u modifier to deal with Unicode characters. And then decode the matches with utf8_decode().

    $s = 'Bös Tüb';
    preg_match("/\w+/u", $s, $matches); // use the 'u' modifier
    var_dump(utf8_decode($matches[0])); // outputs: Bös
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do I use preg_match for partial matches? When I have the string: www.stackoverflow.com
preg_match() gives one match. preg_match_all() returns all matches. preg_split() returns all splits. How can
if (preg_match('(\p{Nd}{4}/\p{Nd}{2}/\p{Nd}{2}/\p{L}+)', '2010/02/14/this-is-something')) { // do stuff } The above code works. However this
How would I use the PHP function preg_match() to test a string to see
There has always been a confusion with preg_match in php. I have a string
so I have the code function getTagContent($string, $tagname) { $pattern = /<$tagname.*?>(.*)<\/$tagname>/; preg_match($pattern, $string,
I have the following string: keyword|title|http://example.com/ I would like to use the PHP function
I have a regular expression to match usernames (which functions in PHP using preg_match
Hello I would like to use preg_match in PHP to parse the Desired text
I have a string which can contain multiple matches (any word surrounded by percentage

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.