I'm trying to create an xsd dictionary for some data migrations, I don't fully understand how to format xsd:pattern values correctly, I was wondering if anyone had any ideas. I have some values that were done already:
<xsd:pattern value="[a-zA-Z]{1}([#-. a-zA-Z0-9]*)"/>
<xsd:pattern value="([ a-zA-Z0-9]*)"/>
But I don't know how to manipulate them to satisfy my current needs.
I have 4 different separate patterns I need to allow:
{ -7615.73809296812, 1741.59586829216, -4356.85343074448 }
142.891 and -100.78
"2721984247"
and
single letters (specifically the letter N and Y)
Thanks for any help :)
- Shannon