The word-boundary tag has no wiki summary.
1
vote
0answers
32 views
Word Boundary Regular Expression Unless Inside HTML Tag
I have a regular expression using word boundaries that works exceedingly well...
~\b('.$value.')\b~i
...save for the fact that it matches text inside HTML tags (i.e. title="This is blue!"). It's a ...
7
votes
1answer
90 views
Regular expression to match boundary between different Unicode scripts
Regular expression engines have a concept of "zero width" matches, some of which are useful for finding edges of words:
\b - present in most engines to match any boundary between word and non-word ...
-5
votes
1answer
48 views
Regex in java \bword\B which metacharacter win? [closed]
I am aware that \bword\B behaves like a word\B using regex in Java. (in terms of matching engine)
Why would it be possible? would not it more reasonable if it was en exception (syntax exception)?
...
0
votes
1answer
76 views
Dot and word boundary at the end of the line
I have this regular expression:
\ba\.?b\.?c\.?\b( something)?
that matches
abc
a.b.c.
a.b.c. something
...
I use it 2 times in order of importance: first I try to add ^ at the begin and $ at ...
0
votes
0answers
42 views
Mark non-spacing (MNS) Unicode category and \b
In PCRE non-spacing mark characters cause word boundary. As a result Åström string has 2 \b positions and Åström (decomposed characters) has 6 \b positions. Is it an intended behavior or a ...
2
votes
2answers
79 views
Word boundery in PHP
In PHP diacritics before and after letters make word boundary (\b), that is not desired behavior. Is it normal among other programming languages? (I know most languages have issues with \b and \w) How ...
0
votes
2answers
77 views
word boundary that rejects leading/end non-alphanumeric character
Right now I'm learning regular expression on Java and I have a question about the word boundaries. So when I looking for word boundaries on Java Regular Expression, I got this \b that accepts word ...
2
votes
1answer
126 views
MongoDB RegEx engine completeness
According to Mongo documentation it uses PCRE engine, and PCRE support \b and \w for unicode characters, but following RegEx does not match with Unicode strings, Is there any solution or alternative ...
5
votes
2answers
227 views
Regex word boundary alternative
I was using the standard \b word boundary. However, it doesn't quite deal with the dot (.) character the way I want it to.
So the following regex:
\b(\w+)\b
will match cats and dogs in cats.dog if ...
2
votes
1answer
47 views
Regex allowing word boundaries with lookahead and “.”
I have the strings:
lorem ipsum Outer.Middle.Last dolor #1
lorem ipsum Outer.Middle dolor #2
Currently I am using the regex [[:<:]]Outer.Middle[[:>:]] to try and match only string #2. ...
5
votes
1answer
76 views
Are there JavaScript equivalents of the Vim regular expression start and end of word atoms “\<” and “\>”?
I know most regular expression engines, including the one in JavaScript have \b to match a word boundary, be it at either the start or end of a word.
But Vim also has two more specific regular ...
1
vote
2answers
137 views
\b vs \\b in regex
As I see in regex documentation that \b match word boundary.
I prepare a string
"db bd how to"
and regex
\b(a|b)(c|d)\b
I think when running the regex, it should match "bd" in the string, ...
1
vote
1answer
181 views
Regex - Word boundaries failing
To summarize: How can I prevent my regex pattern from mistaking segments of strings as being a whole-word variable name? It is replacing letters that are part of a bigger word even though I use word ...
0
votes
1answer
56 views
customize boundary character in regex
I have found that \b is used for capturing boundary characters in regex.
Like with regex \bnull\b and input ,null, it will capture null and with input .null. it will also capture null
What I want is ...
1
vote
1answer
266 views
mysql concat regexp word boundary and quote
Here is my query
SELECT producer FROM producers WHERE producer REGEXP CONCAT('[[:<:]]', 'dell\'', '[[:>:]]')
I replaced mysql like with this to use word boundary from another example here. ...
0
votes
1answer
114 views
PHP removing noise words regular expression with boundaries with ' character
I'm attempting to remove noise words from a string, and I have what I believe is a good algorithm for it, but I'm running into a snag. Before I do my preg_replace I remove all punctuation except ...
0
votes
1answer
157 views
MySQL REGEXP matches a boundary word only but excluding the match in html tags
Following this question and answer, I still have a bit trouble in the result I get,
For instance,
REGEXP '>[^<]*lau[[:>:]]' will match 'lau' only but not 'laurence' which is correct.
...
0
votes
2answers
106 views
Do word boundaries work on symbol characters?
I'm trying to implement word boundaries in my emoticons feature for a chat. But for some reason I can't seem to get the word boundaries to work. I am new to regex.
So when I do:
var reg = ...
2
votes
2answers
85 views
How do I use word boundaries in the RegExp object
What I want to know is how do I use word boundaries in the RegExp object.
For example:
var reg = new RegExp("\bAB\b", "g");
This is not working and I can't do:
var reg = /\bAB\b/g;
Since I will ...
4
votes
1answer
253 views
How to implement regular expression assertions/lookaround (i.e. \b style word boundary) using a DFA regular expression matcher
I would like to implement "word boundary" matches within a DFA based regular expression matcher. Can someone tell me how this is done?
To give some background, I'm currently using the ...
0
votes
4answers
174 views
How to not replace when preceded with some characters using String's replaceAll
I need to replace some words in a text, but I need to put conditions in the replacement strategy as follows:
I want to replace word1 with word2:
String word1 = "word1";
String word2 = "word2";
but ...
1
vote
2answers
515 views
How to use word boundaries in awk without using match() function?
I want to add word boundaries to this awk command:
awk '{$0=tolower($0)};/wordA/&&/wordB/ { print FILENAME ":" $0; }' myfile.txt
I tried adding \y at left and right of wordA and wordB but ...
1
vote
2answers
245 views
Regex word boundary issue when angle brackets are adjacent to the boundary
Regex:
\b< low="" number="" low="">\b
Example string:
<b22>Aquí se muestran algunos síntomas < low="" number="" low=""> tienen el siguiente aspecto.</b22>
I'm not sure ...
1
vote
2answers
459 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 ...
3
votes
2answers
504 views
Javascript regular expression for searching word boundaries in Unicode string
Is there solution to find word boundaries in Japanese string (E.g.: "私はマーケットに行きました。") via JavaScript regular expressions("xregexp" JS library cab be used)?
E.g.:
var xr = RegExp("\\bst","g");
...
6
votes
1answer
3k views
Oracle REGEXP_LIKE and word boundaries
I am having a problem with matching work boundaries with REGEXP_LIKE. The following query returns a single row, as expected.
select 1 from dual
where regexp_like('DOES TEST WORK HERE','TEST');
But ...
2
votes
3answers
172 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_
...
3
votes
3answers
554 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')); // ...
14
votes
3answers
702 views
A Viable Solution for Word Splitting Khmer?
I am working on a solution to split long lines of Khmer (the Cambodian language) into individual words (in UTF-8). Khmer does not use spaces between words. There are a few solutions out there, but ...
5
votes
1answer
2k 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?
1
vote
1answer
216 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
5answers
672 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 ...
1
vote
1answer
830 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 ...
6
votes
1answer
1k 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?
5
votes
2answers
2k 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
533 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, ...
0
votes
2answers
600 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
1k 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...
...
1
vote
2answers
215 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
831 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 ...
10
votes
5answers
4k 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 ...
1
vote
2answers
3k 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, ...
9
votes
3answers
3k 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());
...
0
votes
2answers
3k 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
1k 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
1k 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 ...
1
vote
2answers
127 views
A regular expression for \b
I am writing regular expressions for unicode text in Java. However for the particular script that I am using - Devanagari (0900 - 097F) there is a problem with word boundaries. \b matches characters ...
13
votes
7answers
14k 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 ...
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 ...
2
votes
4answers
3k 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 ...
