🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-12-2020 10:34 AM
(947 views)
Hi all,
I just came across this page documenting Perl regular expressions for Dataflux. Do the data step Perl RegEx functions have the same level of capability? I tried using \h for horizontal white space once, but it didn't work.
Thanks
Barry
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Oh sorry. You use \h.
Yes, unsupported in SAS.
You can use: \x09 \t \s [[:blank:]]
The latter is equivalent to \h
5 REPLIES 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It works for me.
data T; D=prxmatch('/\t/','2009'x); putlog D=; run;
D=2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Oh sorry. You use \h.
Yes, unsupported in SAS.
You can use: \x09 \t \s [[:blank:]]
The latter is equivalent to \h
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, Oh well.
Looks like you can use \v for vertical white space. It would have been nice
to have the whole set available in Dataflux available in the data step, too.
Looks like you can use \v for vertical white space. It would have been nice
to have the whole set available in Dataflux available in the data step, too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Isn't that truncation a feature of the SAS functions in the data step, too?
I'm not sure what the ANSI standard is, but I'm pretty sure SAS options
like length=, format=, label= are SAS extensions, not part of the standard.
More valuable to me would be if Proc SQL would honor length specifications
on numeric variables in Create Table;
I'm not sure what the ANSI standard is, but I'm pretty sure SAS options
like length=, format=, label= are SAS extensions, not part of the standard.
More valuable to me would be if Proc SQL would honor length specifications
on numeric variables in Create Table;