473,770 Members | 2,135 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

restrict simpleType to word characters and spaces except digits

Hi,

I'm having an hard time to build a regular expression that:
- Will accept words;
- Will accept spaces;
- But cannot accept digits;

Examples:

This is a game
Olá Mundo
Módulo A

An initial approach was:

<xs:simpleTyp e name="nomeType" >
<xs:restricti on base="xs:string ">
<xs:maxLength value="255" />
<xs:pattern value="[\w\s]+" />
</xs:restriction>
</xs:simpleType>

But this will accept values like this:

Módulo 1234

I could use "[\w\s]+" [a-zA-Z\s] but i've to accept other letters from
ISO-8859-15 like á or Í.

The attempt:
<xs:simpleTyp e name="nomeType" >
<xs:restricti on base="xs:string ">
<xs:maxLength value="255" />
<xs:pattern value="[\w\s]+" />
<xs:pattern value="\D+" />
</xs:restriction>
</xs:simpleType>

does not work either.

Thanks in advance,

Anil Mamede
Apr 4 '08 #1
3 2639
Anil Mamede wrote:
<xs:simpleTyp e name="nomeType" >
<xs:restricti on base="xs:string ">
<xs:maxLength value="255" />
<xs:pattern value="[\w\s]+" />
</xs:restriction>
</xs:simpleType>
The specification <URL:defines
\w
as
"[#x0000-#x10FFFF]-[\p{P}\p{Z}\p{C}] (all characters except the set
of "punctuatio n", "separator" and "other" characters)"
so that includes digits.

If you use
<xs:pattern value="\P{N}+"/>
then you allow anything that is not a "Number" character.

Or you need to list the characters you want to allow.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Apr 4 '08 #2
On 4 Abr, 18:35, Martin Honnen <mahotr...@yaho o.dewrote:
Anil Mamede wrote:
<xs:simpleTyp e name="nomeType" >
<xs:restricti on base="xs:string ">
<xs:maxLength value="255" />
<xs:pattern value="[\w\s]+" />
</xs:restriction>
</xs:simpleType>

The specification <URL:defines
\w
as
"[#x0000-#x10FFFF]-[\p{P}\p{Z}\p{C}] (all characters except the set
of "punctuatio n", "separator" and "other" characters)"
so that includes digits.

If you use
<xs:pattern value="\P{N}+"/>
then you allow anything that is not a "Number" character.

Or you need to list the characters you want to allow.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Martin Honnen thanks a lot. I'll try that.
Apr 6 '08 #3
Anil Mamede (an*********@gm ail.com) wrote:
: Hi,

: I'm having an hard time to build a regular expression that:
: - Will accept words;
: - Will accept spaces;
: - But cannot accept digits;
What is a word?

I guess that any alphanumeric is a word.
Therefore a number is a word.

So you need a word that has at least one character.

In perl speak (untested))

/(\w*[a-zA-Z]\w*)|(\s+)/

$0.10

Apr 7 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
5999
by: Eric A. Johnson | last post by:
Hi, Thanks for reading this. How do I list all possible permutations of a word? I've figured out how to get all the characters in alphabetical order. I then want to display every possible character permutation in sequence, like so: abcd abdc acbd acdb adbc adcb bacd badc bcad bcda bdac bdca cabd cadb cbad cbda cdab cdba dabc dacb dbac dbca dcab dcba This is turning out to be much more difficult than I thought it would be. It seems to...
1
1585
by: Don Adams | last post by:
I would like to have the following XML: <phone type="work">555-123-1234</phone> <phone type="home">555-123-4321</phone> Is it possible to write a schema to restrict the contents of the type attribute to be enumerated ("work" or "home") AND restrict the contents of the <phone> element to match the pattern \d\d\d-\d\d\d-\d\d\d\d ? I know how to do one or the other, but I haven't figured out a way
3
6016
by: gdogg1587 | last post by:
Greetings. I'm working on a program that will "descramble" words. Think of a word scramble game where there is a list of characters, and several blank spaces to denote the word(s) that you are to come up with from the list. i.e.(* denotes a space): _ _ _ _ _ * _ _ _ _ _ _ characters: .hwodlelrlo answer: hello world.
2
6703
by: Ian Griffiths | last post by:
I have been given a schema, instances of which I'm required to be able to consume and generate. I'd like to be able to manipulate these instances as DataSets internally in my application. The schema defines the following simpleType: <xs:simpleType name="cs"> <xs:restriction base="xs:token"> <xs:pattern value="*"/> </xs:restriction> </xs:simpleType>
1
2216
by: Maksim | last post by:
Trying to find out a way how to restrict value of the element by name of an element, it might be not even possible, but anyhow. Let's consider following snippet: <xs:element name="tag1" type="xs:string" /> <xs:element name="tag2" type="xs:string" /> <xs:element name="tag3" type="xs:string" /> .....
0
1333
by: Codex Twin | last post by:
hello group: The following is a fragment from a schema which defines the EWethnicCategoryStructure type. As you can see, its type is defined by the SimpleType enumeration EWethnicCategoryType. EWethnicCategoryType is defined as a union with the CommonEthnicCategoryType SimpleType enumeration. Now when I use the XSD tool to create a C# class of this schema, the resulting code does not include the SelectedEthnicCategory enumeration.
2
1229
by: bogus1one | last post by:
To all you XML experts, let's say I have the following in an XML doc: <heading units="TRUE">55</heading> I would like to develop a schema that will both provide for an enumeration for the attribute and restrict the input to some range of values. In the example above, I want the enumeration to be restricted to TRUE and MAG. And, I want the valid values the text to be 0 through 359. I seem to be able to get one or the other but not...
5
8235
by: Dakrat | last post by:
Allow me to preface this post by saying that this is my first database project, and while I have learned a lot, any concepts I have learned are hit and miss as I have found new requirements and researched solutions. That said, I have a "training" database with PowerPoint briefings which I have users access and complete training. The form then records the date and time they completed training in a relevant field. I have a separate "master"...
9
1672
by: George | last post by:
C with 2 sprained hands. I would nlike to emulate the t4 encoding scheme using the following graphic: * * * * * * ***** o O o o
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10228
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10057
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9869
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8883
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5312
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3970
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2816
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.