如何从字符串中获取子字符串

时间:2016-11-25 09:10:19

标签: powershell

我需要从以下字符串中检索日期子字符串:

  

DEV_ACID_C179456_2016-11-05_0009_Build

1 个答案:

答案 0 :(得分:1)

快速上线:

$args = array( 'post_type' => 'product', 'post_status' => 'publish', 
'posts_per_page' => -1 );
$products = new WP_Query( $args );
echo $products->found_posts;

但您需要进行研究并分享您的代码。