Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

utf-8 word boundary regex in javascript

In JavaScript: "ab abc cab ab ab".replace(/\bab\b/g, "AB"); correctly gives me: "AB abc cab AB AB" When I use utf-8 characters though: "αβ αβγ γαβ αβ αβ".replace(/\bαβ\b/g, "AB"); the word ...
6
votes
3answers
1k views

php regex word boundary matching in utf-8

I have the following php code in a utf-8 php file: var_dump(setlocale(LC_CTYPE, 'de_DE.utf8', 'German_Germany.utf-8', 'de_DE', 'german')); var_dump(mb_internal_encoding()); ...
4
votes
2answers
892 views

How can I make a regular expression which takes accented characters into account?

I have a JavaScript regular expression which basically finds two-letter words. The problem seems to be that it interprets accented characters as word boundaries. Indeed, it seems that A word ...
4
votes
3answers
288 views

Word boundary detection from text

I am having this problem with word boundary identification. I removed all the markup of the wikipedia document, now I want to get a list of entities.(meaningful terms). I am planning to take bi-grams, ...
4
votes
7answers
3k views

What is a word boundary in regexes?

I am using Java regexes in Java 1.6 (inter alia to parse numeric output) and cannot find a precise definition of \b ("word boundary"). I had assumed that "-12" would be an "integer word" (matched by ...
3
votes
1answer
346 views

PostgreSQL Regex Word Boundaries?

Does PostgreSQL support \b? I'm trying \bAB\b but it doesn't match anything, whereas (\W|^)AB(\W|$) does. These 2 expressions are essentially the same, aren't they?
2
votes
3answers
68 views

Regex for matching of anchor negation and string

I'm trying add a space before a particular string (Token for example) by replacing a regex with another: somethingToken should become something Token but something Token should stay something Token_ ...
2
votes
4answers
1k views

Finding words strictly starting with $, Regex C#

I need to find all matches of word which strictly begins with "$" and contains only digits. So I wrote [$]\d+ which gave me 4 matches for $10 $10 $20a a$20 so I thought of using word boundaries ...
1
vote
2answers
83 views

Regular Expressions: Pound Sign at beginning of word

I am trying to find words starting with a pound sign. Javascript. "test #word no#luck".replace( /\b#([\w]+)\b/g, "<#$1>" ); yet the word boundary doesn't seem to apply to the #-sign. it ...
1
vote
3answers
143 views

Word boundary won't match the beginning or end in Javascript

I'm getting unexpected results with this code: 'foo'.match(new RegExp('\bfoo\b')); // Returns null Why is this returning null while this one returns "foo"? 'foo'.match(new RegExp('foo')); // ...
1
vote
1answer
149 views

word boundary regex problem (overlap)

Given the following code: var myList = new List<string> { "red shirt", "blue", "green", "red" }; Regex r = new Regex("\\b(" + string.Join("|", myList.ToArray()) + ")\\b"); MatchCollection m = ...
1
vote
1answer
373 views

Find “word” index in paragraph with jQuery (Javascript)

I have a string that represents a paragraph of text. var paragraph = "It is important that the word cold is not partially selected where we search for the word old"; I want to be able to search ...
1
vote
2answers
131 views

Should I be able to quote a leading or trailing dollar sign ($) inside a word boundary in Java Regular Expression?

I'm having trouble getting regular expressions with leading / trailing $'s to match in Java (1.6.20). From this code: System.out.println( "$40".matches("\\b\\Q$40\\E\\b") ); System.out.println( ...
1
vote
5answers
337 views

Javascript RegExp and boundaries

A colleague asked me about a Regular expression problem, and I can't seem to find and answer for him. We're using boundaries to highlight certain lengths of text in a text editor, but here's some ...
1
vote
2answers
1k views

Using \b in C# regular expressions doesn't work?

I am wondering why the following regex does not match. string query = "\"1 2\" 3"; string pattern = string.Format(@"\b{0}\b", Regex.Escape("\"1 2\"")); string repl = Regex.Replace(query, pattern, ...
1
vote
3answers
2k views

AS3 RegExp to match words with boundry type characters in them

I'm wanting to match a list of words which is easy enough when those words are truly words. For example /\b (pop|push) \b/gsx when ran against the string pop gave the door a push but it popped ...
0
votes
1answer
374 views

What are non-word boundary in regex (\B), compared to word-boundary?

What are non-word boundary in regex (\B), compared to word-boundary?
0
votes
5answers
274 views

C# word boundary regex instead of .Contains() needed

I have a list: var myList = new List<string> { "red", "blue", "green" }; I have a string: var myString = "Alfred has a red and blue tie"; I am trying to get a count of matches of words in ...
0
votes
2answers
377 views

word boundary on non latin characters in php

This example works fine: echo preg_replace("/\bI\b/u", 'we', "I can"); // we can This one were russian letters are used does not work even though I use "u" modifier: echo preg_replace("/\bЯ\b/u", ...
0
votes
5answers
456 views

Perl regex replacing at word boundary. Detecting “/” as a word boundary

I am running into a strange regex issue.... I have a document where I am doing a replace... as an example I want to replace "DEXX" with "DEXX/AREX" and then with the next substitution replace... ...
0
votes
2answers
1k views

How to find a word within text using XSLT 2.0 and REGEX (which doesn't have \b word boundary)?

I am attempting to scan a string of words and look for the presence of a particular word(case insensitive) in an XSLT 2.0 stylesheet using REGEX. I have a list of words that I wish to iterate over ...
0
votes
3answers
614 views

mysql: instr specify word boundaries

i want to check if a string contains a field value as a substring or not. select * from mytable where instr("mystring", column_name); but this does not search on word boundaries. select * from ...
0
votes
1answer
726 views

Regex word-break with unicode diacritics

I am working on an application that searches text using regular expressions based on input from a user. One option the user has is to include a "Match 0 or more characters" wildcard using the ...
0
votes
4answers
4k views

Regex: How to match the first word after an expression

For example, in this text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu tellus vel nunc pretium lacinia. Proin sed lorem. Cras sed ipsum. Nunc a libero quis risus sollicitudin ...